Class DocumentTriggerBuilder
DokümanTetikleyiciOluşturucu
Doküman tetikleyicileri için bir oluşturucu.
Ayrıntılı dokümanlar
create()
Yeni tetikleyiciyi oluşturur ve döndürür.
Return
Trigger
: Yeni tetikleyici.
onOpen()
Belge açıldığında tetiklenecek bir tetikleyici belirtir.
const document = DocumentApp.getActiveDocument();
ScriptApp.newTrigger('myFunction').forDocument(document).onOpen().create();
Return
DocumentTriggerBuilder
: Zincirleme için bu DocumentTriggerBuilder
.
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2024-12-03 UTC.
[null,null,["Son güncelleme tarihi: 2024-12-03 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."]]],[]]