GetGlobal

Gets a variable which is valid for the whole environment also for the XSL transformation service.

GetGlobal(var)

 

Parameters

  • var : String, name of the variable.

 

Remarks

Get a variable which can be set in an XSL Stylesheet and be accessed in a JavaScript and vice versa.

 

Example

//Declare the function GetGlobal to get the value of variable "Number"
var func = "GetGlobal(Number)";

//Execute function
var NUMBER = ExecFunc(func);
//NUMBER is now the Value of the Global Variable Number