当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Is对象 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript Is对象 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 165 ::
收藏到网摘: n/a

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

语法

IsObject(expression)

参数 描述
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

评论 (0) All

登陆 | 还没注册?