| Syntax | UL>$getTemp{variable_name}{default_value} |
| Documentation | Returns the value of the named temp variable of the current branch:
default_value, a optional parameter used to specify a return value in case the named temp 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} $//is equivalent to the expression $set{value}{$getTemp{some_variable}{no_value}} $//The following expression may cause an exception to be thrown if the temp variable named 'some_variable' does not exist on the current branch $set{value}{$getTemp{some_variable}} |
|
| Group | Branch |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 1 |
| Maximum parameters | 2 |