EnvironmentMapAnalysis.name Property

Parent Object: EnvironmentMapAnalysis

Derived from: Analysis.name


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

"environmentMapAnalysis_var" is a variable referencing an EnvironmentMapAnalysis object.
# Get the value of the property.
propertyValue = environmentMapAnalysis_var.name

# Set the value of the property.
environmentMapAnalysis_var.name = propertyValue
"environmentMapAnalysis_var" Is a variable referencing an EnvironmentMapAnalysis Object.
#include <Fusion/Fusion/EnvironmentMapAnalysis.h>

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

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

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

Property Value

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

Version

Introduced in version September 2026