| Syntax |
|
| Documentation | Provides the ability to selectively execute one of its two statement blocks based on a boolean expression:
statement_block_1, the statement block to be executed if the boolean_expression is true. statement_block_2, an optional parameter to specify the statement block to be executed if the boolean_expression is false. |
| Examples | |
If a variable named 'some_variable' exists on the current branch then delete it else create it:
$removeVariable{some_variable} } { $setVariable{some_variable}{some_value} } |
|
| Group | Control_Flow |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 2 |
| Maximum parameters | 3 |