Specifies the speed (rpm) at which this spindle reaches peak torque (Nm).
# Get the value of the property.propertyValue = machineSpindle_var.peakTorqueSpeed# Set the value of the property.machineSpindle_var.peakTorqueSpeed = propertyValue
#include <Cam/Machine/MachineSpindle.h>// Get the value of the property.double propertyValue = machineSpindle_var->peakTorqueSpeed();// Set the value of the property, where value_var is a double.bool returnValue = machineSpindle_var->peakTorqueSpeed(value_var);