Gets and sets if this joint is suppressed.
# Get the value of the property.propertyValue = joint_var.isSuppressed# Set the value of the property.joint_var.isSuppressed = propertyValue
#include <Fusion/Components/Joint.h>// Get the value of the property.boolean propertyValue = joint_var->isSuppressed();// Set the value of the property, where value_var is a boolean.bool returnValue = joint_var->isSuppressed(value_var);