Gets and sets the displayed name of this folder.
# Get the value of the property.propertyValue = dataFolder_var.name# Set the value of the property.dataFolder_var.name = propertyValue
#include <Core/Dashboard/DataFolder.h>// Get the value of the property.string propertyValue = dataFolder_var->name();// Set the value of the property, where value_var is a string.bool returnValue = dataFolder_var->name(value_var);