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