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