DefinitionType Property
The creation type of a variable, either static (created before script execution) or dynamic (created during script execution).
Syntax
Property DefinitionType As VSVariableDefinitionType |
Parameters
None
Examples
IronPython
#Get variable definition type (static, dynamic) |
C#
//Get variable definition type (static, dynamic)
ScriptData.Variables[varName].DefinitionType = VSVariableDefinitionType.VSStatic; |