IsDynamic Property
Indicates whether or not the variable is created during script execution (rather than before script execution).
Syntax
ReadOnly Property IsDynamic As Boolean |
Parameters
None
Examples
IronPython
#Get variable dynamic flag |
C#
//Get variable dynamic flag bool is_dyna = ScriptData.Variables[varName].IsDynamic; |