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