Variables Expression Functions
These functions are still available for backwards compatibility, but are not listed in the functions menu of expressions.
📄️ clearVariables
Removes all defined variables from memory.
📄️ deleteVariables
Un-defines a variable that has been defined with StoreVariable. If the variable is not defined, does nothing.
📄️ getVariable
Retrieves the specified variable, or will return the default value if the name is not defined.
📄️ isVariableDefined
Returns a boolean TRUE or FALSE as to whether the given name is defined.
📄️ storeVariable
Stores the value under the given name. Variable will be created if not already defined.