Class DocumentTriggerBuilder
DocumentTriggerBuilder
أداة إنشاء لمشغِّلات المستندات.
الوثائق التفصيلية
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 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2024-09-12 (حسب التوقيت العالمي المتفَّق عليه)"],[[["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."]]],[]]