Specifies the minimum speed (rpm) for this spindle.
# Get the value of the property.propertyValue = machineSpindle_var.minSpeed# Set the value of the property.machineSpindle_var.minSpeed = propertyValue
#include <Cam/Machine/MachineSpindle.h>// Get the value of the property.double propertyValue = machineSpindle_var->minSpeed();// Set the value of the property, where value_var is a double.bool returnValue = machineSpindle_var->minSpeed(value_var);