Gets and sets the identifier of that Preset. The id can be used to select a Preset for a Operation.
# Get the value of the property.propertyValue = toolPreset_var.id# Set the value of the property.toolPreset_var.id = propertyValue
#include <Cam/Tools/ToolPreset.h>// Get the value of the property.string propertyValue = toolPreset_var->id();// Set the value of the property, where value_var is a string.bool returnValue = toolPreset_var->id(value_var);