Variables
Variables are used to store and retrieve data which may be used globally and/or on multiple positions in a Workflow at the same time. There are two types of Variables:
Variable Type | Description |
---|---|
Project Variable | This type of Variable can be accessed globally by all Workflows of your Project. Project Variables are defined and modified using the Variables tab in the → Project Panel. |
Local Variable | This type of Variable can only be accessed locally inside of a Workflow. Other Workflows cannot access them. They are especially useful if you need to transmit data over long distances and they help avoid drawing Cables which may clutter up the structure of your Workflow. |
Variables can contribute much to a well structured Workflow and reduce the usage of Cables. At the same time, overusing them can obfuscate a Workflow. Properly annotate your Workflows when making extensive use of Variables!
Project Variables
| |
Project Variable Getter
| |
Project Variable Setter
|
Project Variables can be used globally in certain Units (JavaScript, Shell Command). To get the content of a Variable, enclose its name in '$', for example "$myVariable$".
Local Variables
| |
Local Variable Setter
| |
Local Variable Getter
|
When there are multiple instances of a Local Variable Setter with the same name, changing the type on one of them will change the type of all other Setters (with the same name).
Variable Types
Refer to the chapter → Data Types & Color Coding.