Gets and sets the PrintSetting associated with the setup.
# Get the value of the property.propertyValue = setup_var.printSetting# Set the value of the property.setup_var.printSetting = propertyValue
#include <Cam/CAM/Setup.h>// Get the value of the property.Ptr<PrintSetting> propertyValue = setup_var->printSetting();// Set the value of the property, where value_var is a PrintSetting.bool returnValue = setup_var->printSetting(value_var);