You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

This function creates a variable for storing a number list, and directly sets the values.

This value will be returned by the getNumberList() function, when used within the same expression.

Syntax
setNumberList(variableName, numberList) #Output: Number list
Examples
Expression parserDescription
setNumberList("myNumberList",[1,2,3])
This example creates the variable "myNumberList", and sets the values [1, 2, 3]
Additional information

Parameters used in this function

ParameterInput (data type)Description
variableName

TEXT

A text for the variable name.
numberList

ISSUE LIST

Any given number list.
Output

This function returns a NUMBER LIST

To retrieve the value stored in the variable, use the function getNumberList()  within the same expression.