GetVariantType Method
See Also Example Applies To
Returns a string with a text description of the type of the passed variant.
Syntax
object.GetVariantType (ToCheck)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCUtility object. |
| ToCheck |
Required. A variant which is being checked. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCUtility ' The Utility object
Print X.GetVariantType("String")
|