The maximum temperature this extruder can reach in degrees C.
# Get the value of the property.propertyValue = extruderMachineElement_var.temperature# Set the value of the property.extruderMachineElement_var.temperature = propertyValue
#include <Cam/Machine/ExtruderMachineElement.h>// Get the value of the property.double propertyValue = extruderMachineElement_var->temperature();// Set the value of the property, where value_var is a double.bool returnValue = extruderMachineElement_var->temperature(value_var);