ModelParameter.textValue Property

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

Description

Gets and sets the value of the parameter when it is a text parameter. This can be determined by checking the valueType property. Setting this value will cause the current expression to be overwritten. If the parameter is not a text parameter, the value of this property should be ignored and setting will fail.

Syntax

"modelParameter_var" is a variable referencing a ModelParameter object.

# Get the value of the property.
propertyValue = modelParameter_var.textValue

# Set the value of the property.
modelParameter_var.textValue = propertyValue
"modelParameter_var" is a variable referencing a ModelParameter object.
#include <Fusion/Fusion/ModelParameter.h>

// Get the value of the property.
string propertyValue = modelParameter_var->textValue();

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

Property Value

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

Version

Introduced in version September 2025