Analysis.name Property

Parent Object: Analysis
Defined in namespace "adsk::fusion" and the header file is <Fusion/Fusion/Analysis.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

"analysis_var" is a variable referencing an Analysis object.

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

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

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

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

Property Value

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

Version

Introduced in version January 2023