Gets and sets the value of this property.
# Get the value of the property.propertyValue = booleanProperty_var.value# Set the value of the property.booleanProperty_var.value = propertyValue
#include <Core/Application/BooleanProperty.h>// Get the value of the property.boolean propertyValue = booleanProperty_var->value();// Set the value of the property, where value_var is a boolean.bool returnValue = booleanProperty_var->value(value_var);