"graphicsPreferences_var" is a variable referencing a GraphicsPreferences object.
# Get the value of the property. propertyValue = graphicsPreferences_var.isSurfaceNormalDisplayDisabled
# Set the value of the property. graphicsPreferences_var.isSurfaceNormalDisplayDisabled = propertyValue
"graphicsPreferences_var" is a variable referencing a GraphicsPreferences object.
#include <Core/Application/GraphicsPreferences.h>
// Get the value of the property. integer propertyValue = graphicsPreferences_var->isSurfaceNormalDisplayDisabled();
// Set the value of the property, where value_var is an integer. bool returnValue = graphicsPreferences_var->isSurfaceNormalDisplayDisabled(value_var);
Property Value
This is a read/write property whose value is an integer.