地址级别数
AddressField.Level(属性)
说明
可读写
地址字段格式包含几级地址,1-5级
级数 | 示例 |
---|---|
1 | 省 - 详细地址 |
2 | 省/市 - 详细地址 |
3 | 省/市/区 - 详细地址 |
4 | 省/市/区/街道 - 详细地址 |
5 | 省/市/区/街道/社区 - 详细地址 |
返回值
Number
浏览器环境示例
javascript
async function example() {
await instance.ready();
const Application = instance.Application;
const fieldDescriptor = await Application.Sheets("数据表").FieldDescriptors("@地址")
const prop = await fieldDescriptor.Address
prop.Level = 5
fieldDescriptor.Apply()
}
脚本编辑器 示例
javascript
function main() {
const fieldDescriptor = Application.Sheets("数据表").FieldDescriptors("@地址")
const prop = fieldDescriptor.Address
prop.Level = 5
fieldDescriptor.Apply()
}
main()