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