The IsObject function returns a Boolean value that indicates whether the specified expression is an automation object. It returns True if expression is an automation object; otherwise, it returns False.
IsObject 函数可返回 Boolean 值指明表达式是否引用了有效的 Automation 对象。如果 expression 是 Object 子类型变量或用户自定义的对象,则 IsObject 返回 True;否则函数返回 False
语法
参数 | 描述 |
expression | Required. An expression 必选项。expression 参数可以是任意表达式。 |
实例 1
dim x set x=me document.write(IsObject(x)) 输出: True |
实例 2
dim x x="me" document.write(IsObject(x)) 输出: False |