Gets and sets if the default measure is shown.
# Get the value of the property.propertyValue = generalPreferences_var.isDefaultMeasureShown# Set the value of the property.generalPreferences_var.isDefaultMeasureShown = propertyValue
#include <Core/Application/GeneralPreferences.h>// Get the value of the property.boolean propertyValue = generalPreferences_var->isDefaultMeasureShown();// Set the value of the property, where value_var is a boolean.bool returnValue = generalPreferences_var->isDefaultMeasureShown(value_var);