'Declaration
Public Shared Function FindVarType( _ ByVal type As Type, _ ByRef varType As VarType _ ) As Boolean
'Usage
Dim type As Type Dim varType As VarType Dim value As Boolean value = VarTypeUtilities.FindVarType(type, varType)
Parameters
- type
- The System.Type for which the corresponding OLE Automation type should be determined.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - varType
- The resulting VarType. If it cannot be specifically determined, a
null
is returned.The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
if the corresponding OLE automation type has been successfully determined; return false
otherwise.