| Syntax |
|
| Documentation | Returns the value of the named variable of the current branch:
default_value, a optional parameter used to specify a return value in case the named variable does not exist on the current branch.
|
| Examples | |
Access the value of the variable named 'some_variable' on the current branch:
$set{name}{some_variable} $set{value}{no_value} $if{$existsVariable{$get{name}}}
$set{value}{$getVariable{$get{name}}} } $//is equivalent to the expression $set{value}{$getVariable{some_variable}{no_value}} $//The following expression may cause an exception to be thrown if the variable named 'some_variable' does not exist on the current branch $set{value}{$getVariable{some_variable}} |
|
| Group | Branch |
| Minimum required transaction-mode: | READ |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 1 |
| Maximum parameters | 2 |