This function returns the values stored in a number list variable, which was previously created using the setNumberList() function.

Syntax
getNumberList(variableName) #Output: Number list
Examples
Expression parserDescription
getNumberList("myNumberList")

This example returns the values stored in the variable named "myNumberList", e.g.:

[1,2,3]

Additional information

Parameters used in this function

ParameterInput (data type)Description
variableName

TEXT

The name of the stored variable.
Output

This function returns a NUMBER LIST

To return the value you must have created the variable before, using the setNumberList() function within the same expression.


Use cases and examples