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