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