"graphicsPreferences_var" is a variable referencing a GraphicsPreferences object.
# Get the value of the property. propertyValue = graphicsPreferences_var.degradedSelectionDisplayStyle
# Set the value of the property. graphicsPreferences_var.degradedSelectionDisplayStyle = propertyValue
"graphicsPreferences_var" is a variable referencing a GraphicsPreferences object.
#include <Core/Application/GraphicsPreferences.h>
// Get the value of the property. DegradedSelectionDisplayStyles propertyValue = graphicsPreferences_var->degradedSelectionDisplayStyle();
// Set the value of the property, where value_var is a DegradedSelectionDisplayStyles. bool returnValue = graphicsPreferences_var->degradedSelectionDisplayStyle(value_var);