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