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
is_dyna = Host.ScriptData.Variable[varName].IsDynamic


C#

//Get variable dynamic flag

bool is_dyna = ScriptData.Variables[varName].IsDynamic;


Remarks