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