Subgroup |
Action |
Description |
Conditions |
IF...Else...ElseIF...Endif |
The if-then construct (sometimes called if-then-else) is common across many programming languages. Although the syntax varies quite a bit from language to language, the basic structure looks like. |
Conditions |
|
This action is used to show a message error to the user. Tipically, have a Message Box and a Cancel actions between On Error and End On Error. |
Loops |
While...End While |
A while loop is a control flow statement that allows code to be executed repeatedly based on a given condition. |
Loops |
For Each...End For Each |
For each is an action for traversing items in a collection. |
Loops |
Continue |
Goto to the begin of current loop. |
Interrupt |
Cancel |
Cancel Event execution. |
Interrupt |
Cancel All |
Stop execution at this point (no other action are executed). |
Interrupt |
Break |
Exit from current loop. |
Interrupt |
Sleep |
Stops execution during a specified amount of time. |
Critical Sections |
Set Current Thread Priority |
This action defines the current thread priority. |
Critical Sections |
Critical Section Enter |
This action defines the beginning of a critical section. |
Critical Sections |
Critical Section Leave |
This action defines the leaving of a critical section. |
Critical Sections |
Critical Section is Locked |
This action is used to user knows if a critical section is locked or not. |
Code |
Breakpoint |
This action introduces a breakpoint in the users code. |
Code |
Comment |
This action allows the user to introduce a text comment in the code. |
Code
|
Debug
|
This action shows a string in the trace window. It is only for the simulator |
JSON |
JSON Get Value
|
Retrieves the value from the item of a JSON object. |
JSON |
JSON Get Array Item
|
Retrieves one item from a JSON array. |
JSON |
JSON Get Array Item Count
|
Retrieves the number of items in a JSON array. |
JSON
|
JSON Get Name List
|
Retrieves the properties list found in the top level JSON object.
|