当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript VarType 函数
The VarType function returns a value that indicates the subtype of a specified variable.
VarType 函数可返回指示变量子类型的值。
The VarType function can return one of the following values:
VarType 函数返回下列值:
常数 | 值 | 描述 |
vbEmpty | 0 | Empty(未初始化) |
vbNull | 1 | Null(无有效数据) |
vbInteger | 2 | 整数 |
vbLong | 3 | 长整数 |
vbSingle | 4 | 单精度浮点数 |
vbDouble | 5 | 双精度浮点数 |
vbCurrency | 6 | 货币 |
vbDate | 7 | 日期 |
vbString | 8 | 字符串 |
vbObject | 9 | Automation 对象 |
vbError | 10 | 错误 |
vbBoolean | 11 | Boolean |
vbVariant | 12 | Variant(只和变量数组一起使用) |
vbDataObject | 13 | 数据访问对象 |
vbByte | 17 | 字节 |
vbArray | 8192 | 数组 |
Note: If the variable is an array VarType() returns 8192 + VarType(array_element). Example: for an array of integer VarType() will return 8192 + 2 = 8194.
注意:当 Variant 的值被添加到 Array 的值中以表明 VarType 函数的参数是一个数组时,它才被返回。例如,对一个整数数组的返回值是 2 + 8192 的计算结果,或 8194。如果一个对象有默认属性,则 VarType(object) 返回对象默认属性的类型。
VarType(varname) |
参数 | 描述 |
---|---|
varname | Required. A variable name 必选项。varname 参数可以是任何变量 |
dim x 输出: 8 |