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