Skip to main content
Version: 4.62

setVariable

Stores the given value to a variable of the specified name.

note

Variables are available throughout the application (global) and stored in memory. They therefore only persist until the application is fully closed, at which point they are removed.

Field Configurations

KeyTypeDescriptionDefault Value
"params" (required)Objectundefinednull

Parameters

KeyTypeDescriptionDefault Value
"async"BooleanSpecifies whether the action should perform asynchronously.null
"value" (required)String,ObjectThe value of the variable.null
"variable" (required)StringThe name of the variable.null

Inherited

From Base Action

Base Action

Field Configurations

KeyTypeDescriptionDefault Value
"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null
"leadingDelimiter"StringThe leading mustache delimiter to use.null
"params"Object,ArrayObject containing the properties of the action.null
"trailingDelimiter"StringThe trailing mustache delimiter to use.null
"type"StringType name of the action.null

Examples

Example 1: Set a variable

Show ExampleHide Example

Set the value for the specified variable to the content of the textBox layer.

{
"type": "setVariable",
"leadingDelimiter": "{$",
"trailingDelimiter": "$}",
"dynamicParams": {
"variableActions01Value": {
"context": "form",
"field": "variableActions01Value"
}
},
"params": {
"variable": "variableActions01Value",
"value": "{variableActions01Value$}"
}
}
The app showing the results of the sample code from Example 1.The app showing the results of the sample code from Example 1.