Gets and sets the description of the PrintSetting.
# Get the value of the property.propertyValue = printSetting_var.description# Set the value of the property.printSetting_var.description = propertyValue
#include <Cam/PrintSetting/PrintSetting.h>// Get the value of the property.string propertyValue = printSetting_var->description();// Set the value of the property, where value_var is a string.bool returnValue = printSetting_var->description(value_var);