Parameter.textValue Property
Parent Object:
ParameterDefined in namespace "adsk::fusion" and the header file is <Fusion/Fusion/Parameter.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
"parameter_var" is a variable referencing a Parameter object.
# Get the value of the property. propertyValue = parameter_var.textValue
# Set the value of the property. parameter_var.textValue = propertyValue |
"parameter_var" is a variable referencing a Parameter object.
#include <Fusion/Fusion/Parameter.h>
// Get the value of the property. string propertyValue = parameter_var->textValue();
// Set the value of the property, where value_var is a string. bool returnValue = parameter_var->textValue(value_var); |
Property Value
This is a read/write property whose value is a string.
Version
Introduced in version September 2025