The name of the construction point as it is displayed in the browser.
# Get the value of the property.propertyValue = constructionPoint_var.name# Set the value of the property.constructionPoint_var.name = propertyValue
#include <Fusion/Construction/ConstructionPoint.h>// Get the value of the property.string propertyValue = constructionPoint_var->name();// Set the value of the property, where value_var is a string.bool returnValue = constructionPoint_var->name(value_var);