Body Preset get and set description.
# Get the value of the property.propertyValue = printSettingItem_var.description# Set the value of the property.printSettingItem_var.description = propertyValue
#include <Cam/PrintSetting/PrintSettingItem.h>// Get the value of the property.string propertyValue = printSettingItem_var->description();// Set the value of the property, where value_var is a string.bool returnValue = printSettingItem_var->description(value_var);