Class DocumentTriggerBuilder
DocumentTriggerBuilder
Kreator aktywatorów dokumentów.
Szczegółowa dokumentacja
create()
Tworzy i zwraca nową regułę.
Powrót
Trigger
– nowa reguła.
onOpen()
Określa wyzwalacz, który będzie się uruchamiać po otwarciu dokumentu.
var document = DocumentApp.getActiveDocument();
ScriptApp.newTrigger('myFunction')
.forDocument(document)
.onOpen()
.create();
Powrót
DocumentTriggerBuilder
– DocumentTriggerBuilder
do łańcuchów.
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-09-12 UTC.
[null,null,["Ostatnia aktualizacja: 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."]]],[]]