Gets and sets if this feature is suppressed. This is only valid for parametric features.
# Get the value of the property.propertyValue = loftFeature_var.isSuppressed# Set the value of the property.loftFeature_var.isSuppressed = propertyValue
#include <Fusion/Features/LoftFeature.h>// Get the value of the property.boolean propertyValue = loftFeature_var->isSuppressed();// Set the value of the property, where value_var is a boolean.bool returnValue = loftFeature_var->isSuppressed(value_var);