IsGlobal Property
Indicates whether or not a variable has global scope. Global variables are shared amongst documents while local variables are specific for one specific document.
Syntax
Property IsGlobal As Boolean |
Parameters
None
Examples
IronPython
#Get variable global flag |
C#
//Get variable global flag
ScriptData.Variables[varName].IsGlobal = true |