Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

插入多个联系人

ContactField.IsSupportMulti(属性)

说明

可读写

字段类型为联系人时,通过此属性可以设置是否允许向单元格插入多个联系人

返回值

Boolean

浏览器环境示例

javascript
async function example() {
    await instance.ready();
    const Application = instance.Application
    const fieldDescriptor = await Application.Sheets("数据表").FieldDescriptors("@联系人")
    const prop = await fieldDescriptor.Contact
    prop.IsSupportMulti = true
    fieldDescriptor.Apply()
}

脚本编辑器 示例

javascript
function main() {
    const fieldDescriptor = Application.Sheets("数据表").FieldDescriptors("@联系人")
    const prop = fieldDescriptor.Contact
    prop.IsSupportMulti = true
    fieldDescriptor.Apply()
}
main()
回到旧版