SheetInput.name Property

Parent Object: SheetInput
Defined in namespace "adsk::drawing" and the header file is <Drawing/Sheet/SheetInput.h>

Description

Gets and sets the name of the new sheet. If not set or empty, a default name is assigned when the sheet is created.

Syntax

"sheetInput_var" is a variable referencing a SheetInput object.
# Get the value of the property.
propertyValue = sheetInput_var.name

# Set the value of the property.
sheetInput_var.name = propertyValue
"sheetInput_var" Is a variable referencing a SheetInput Object.
#include <Drawing/Sheet/SheetInput.h>

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

// Set the value of the property, where value_var is a string.
bool returnValue = sheetInput_var->name(value_var);
"sheetInput_var" Is a variable referencing a SheetInput Object.
// Get the value of the property.
propertyValue = sheetInput_var.name;

// Set the value of the property.
sheetInput_var.name = propertyValue;

Property Value

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

Version

Introduced in version September 2026