Syntax |
IsObject(expression) |
Description |
Returns True if expression is a Variant variable containing an Object; returns False otherwise. |
Example |
This example will attempt to find a running copy of Excel and create 'a Excel object that can be referenced as any other object in the Basic Control Engine. Sub Main() If IsObject(v) Then |
See Also |
Variant (data type); IsEmpty (function); IsDate (function); IsError (function); VarType (function); IsNull (function). |
I |