Class DocumentTriggerBuilder
DocumentTriggerBuilder
Builder לטריגרים של מסמכים.
מסמכי תיעוד מפורטים
create()
יוצרת ומחזירה את הטריגר החדש.
חזרה
Trigger
– הטריגר החדש.
onOpen()
מציינת טריגר שיופעל כשהמסמך ייפתח.
var document = DocumentApp.getActiveDocument();
ScriptApp.newTrigger('myFunction')
.forDocument(document)
.onOpen()
.create();
חזרה
DocumentTriggerBuilder
– DocumentTriggerBuilder
, לשרשור.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2024-09-12 (שעון UTC).
[null,null,["עדכון אחרון: 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."]]],[]]