CustomFeatureParameter.expression Property

Parent Object: CustomFeatureParameter

PreviewThis functionality is provided as a preview of intended future API capabilities. You are encouraged to use it and report any problems or suggestions using the Fusion API and Scripts forum.

Because this is a preview of future functionality, there is the possibility that it will change, which will possibly break any existing programs that use this functionality. Because of that, you should never deliver any programs that use any preview capabilities. For a distributed program, you should wait until it has moved from preview to released state.


Defined in namespace "adsk::fusion" and the header file is <Fusion/Features/CustomFeatureParameter.h>

Description

Gets and sets the expression used to calculate the value of the parameter. This is the equivalent of the "Expression" column in the Parameters dialog. Numeric parameters can be defined by a simple expression like "6.25", which will be interpreted based on whatever the default units are for the document. For example, if the units are set to millimeters, the value will be 6.25 mm; if the units are inches, it will be 6.25 inches. The expression can also contain the units so "6.25 in" will always be evaluated as inches regardless of the document units.

An expression can also contain references to other parameters and use equations. For example, the expression "Length / 2" is valid for a numeric parameter as long as there is a numeric parameter named "Length".

Syntax

"customFeatureParameter_var" is a variable referencing a CustomFeatureParameter object.

# Get the value of the property.
propertyValue = customFeatureParameter_var.expression

# Set the value of the property.
customFeatureParameter_var.expression = propertyValue
"customFeatureParameter_var" is a variable referencing a CustomFeatureParameter object.
#include <Fusion/Features/CustomFeatureParameter.h>

// Get the value of the property.
string propertyValue = customFeatureParameter_var->expression();

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

Property Value

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

Version

Introduced in version January 2021