GetGlobal |
Top Previous Next |
Prototype
GetGlobal(strVariableName)
Description
It allows to recall variable set as global.
Parameters
strVariableName: it corresponds to inizialized variable as global.
Returned value
None.
Example
// it recalls variable "Counter" GetGlobal(Counter);
// It increases the variable Inc(Counter);
// It sets the current variable value as global SetGlobal('Counter');
|