触发时间
AutomationField.ExecuteTime(属性)
说明
可读写
当自动任务字段的类型为 DueDateNotifyContact,可设置指定触发时间通知联系人 格式为当前日期 + 执行时间, 时间为当天经过的秒数
返回值
Number
浏览器环境示例
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.ExecuteTime = 3600
// 更新字段
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.ExecuteTime = 3600
// 更新字段
field.Apply()
}
main();