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