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