VisualBasicType Property

The .NET Visual Basic Type of this variable.

Syntax

ReadOnly Property VisualBasicType As Type

Parameters

None

Examples

IronPython

#Get .NET Visual Basic type of this variable
vb_type = Host.ScriptData.Variable[varName].VisualBasicType


C#

//Get .NET Visual Basic type of this variable

Type vb_type = ScriptData.Variables[varName].VisualBasicType;


Remarks