通知联系人
AutomationField.ContactField(属性)
说明
可读写
自动任务字段的通知联系人字段
返回值
String
浏览器环境示例
javascript
async function example() {
await instance.ready();
const Application = instance.Application;
const sheet = Application.Sheets(1)
const field = await sheet.FieldDescriptors(11)
const automation = await field.Automation
// 设置 自动化任务的属性
automation.Type = "DueDateNotifyContact"
automation.ContactField = await sheet.FieldId("联系人")
// 更新字段
field.Apply()
}
脚本编辑器 示例
javascript
function main() {
const sheet = Application.Sheets(1)
const field = await sheet.FieldDescriptors(11)
const automation = await field.Automation
// 设置 自动化任务的属性
automation.Type = "DueDateNotifyContact"
automation.ContactField = sheet.FieldId("联系人")
// 更新字段
field.Apply()
}
main();