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