SectionAnalysis.name Property

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

Description

A property that gets and sets the name of the analysis. If you use a name that is not unique, Fusion will automatically append a number to the name to make it unique.

Syntax

"sectionAnalysis_var" is a variable referencing a SectionAnalysis object.

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

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

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

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

Property Value

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

Version

Introduced in version January 2023