The TypeName function returns the subtype of a specified variable.
TypeName 函数可以返回一个字符串,提供有关变量的 Variant 子类型信息。
The TypeName function can return one of the following values:
TypeName 函数返回值如下:
- Byte - 字节值
- Integer - 整数型
- Long - 长整型
- Single - 单精度浮点
- Double - 双精度浮点
- Currency - 货币值
- Decimal - 十进制
- Date - 时间或日期
- String - 字符串值
- Boolean - 布耳值
- Empty - 未初始化
- Null - 无有效数据
- <object type> - 实际对象类型名
- Object - 一般对象
- Unknown - 未知对象类型
- Nothing - 还未引用对象实例的对象变量
- Error - 错误
语法
参数 | 描述 |
varname | Required. A variable name 必选项的 varname 参数,可以是任何变量。 |
实例 1
dim x x="Hello World!" document.write(TypeName(x) & "<br />") x=4 document.write(TypeName(x) & "<br />") x=4.675 document.write(TypeName(x) & "<br />") x=Null document.write(TypeName(x) & "<br />") x=Empty document.write(TypeName(x) & "<br />") x=True document.write(TypeName(x)) 输出: String Integer Double Null Empty Boolean |