Class DocumentTriggerBuilder
DocumentTriggerBuilder
Trình tạo cho điều kiện kích hoạt tài liệu.
Tài liệu chi tiết
create()
Tạo và trả về điều kiện kích hoạt mới.
Cầu thủ trả bóng
Trigger
– Trình kích hoạt mới.
onOpen()
Chỉ định một trình kích hoạt sẽ kích hoạt khi mở tài liệu.
var document = DocumentApp.getActiveDocument();
ScriptApp.newTrigger('myFunction')
.forDocument(document)
.onOpen()
.create();
Cầu thủ trả bóng
DocumentTriggerBuilder
— DocumentTriggerBuilder
này, để tạo chuỗi.
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2024-09-12 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2024-09-12 UTC."],[[["The DocumentTriggerBuilder helps in creating and managing triggers for Google Docs."],["It provides methods like `create()` to finalize the trigger and `onOpen()` to set a trigger for when the document is opened."],["The `onOpen()` method allows you to specify a function to execute when a document is opened, enhancing document automation capabilities."]]],[]]