CustomGraphicsEntity.name Property

Parent Object: CustomGraphicsEntity
Defined in namespace "adsk::fusion" and the header file is <Fusion/Graphics/CustomGraphicsEntity.h>

Description

Gets and sets the name displayed when this entity is selected. If no name has been set, "Custom Graphics" will be displayed.

Syntax

"customGraphicsEntity_var" is a variable referencing a CustomGraphicsEntity object.

# Get the value of the property.
propertyValue = customGraphicsEntity_var.name

# Set the value of the property.
customGraphicsEntity_var.name = propertyValue
"customGraphicsEntity_var" is a variable referencing a CustomGraphicsEntity object.
#include <Fusion/Graphics/CustomGraphicsEntity.h>

// Get the value of the property.
string propertyValue = customGraphicsEntity_var->name();

// Set the value of the property, where value_var is a string.
bool returnValue = customGraphicsEntity_var->name(value_var);

Property Value

This is a read/write property whose value is a string.

Version

Introduced in version October 2022