ה-builder הגנרי לטריגרים של סקריפטים.
Methods
שיטה | סוג הערך המוחזר | תיאור קצר |
---|---|---|
for | Document | יצירת Document שמקושר למסמך הנתון והחזרתו. |
for | Document | יצירת Document שמקושר למסמך עם המזהה הנתון והחזרתו. |
for | Form | יצירת Form שמקושר לטופס הנתון והחזרתו. |
for | Form | יצירת Form שמקושר לטופס עם המזהה הנתון והחזרתו. |
for | Spreadsheet | יצירת Spreadsheet שמקושר לגיליון האלקטרוני הנתון והחזרתו. |
for | Spreadsheet | יצירת Spreadsheet שמקושר לגיליון האלקטרוני עם המזהה הנתון והחזרתו. |
for | Calendar | הפונקציה מחזירה בונה ליצירת טריגרים ביומן. |
time | Clock | יצירת Clock והחזרתו לצורך בניית טריגרים מבוססי-זמן. |
מסמכים מפורטים
for Document(document)
יצירת Document
שמקושר למסמך הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forDocument(DocumentApp.getActiveDocument()) .onOpen() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
document | Document | המסמך |
חזרה
Document
– ה-DocumentTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
for Document(key)
יצירת Document
שמקושר למסמך עם המזהה הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forDocument('1234567890abcdefghijklmnopqrstuvwxyz') .onOpen() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
key | String | המזהה של המסמך |
חזרה
Document
– ה-DocumentTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
for Form(form)
יצירת Form
שמקושר לטופס הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forForm(FormApp.getActiveForm()) .onFormSubmit() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
form | Form | הטופס |
חזרה
Form
– ה-FormTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
for Form(key)
יצירת Form
שמקושר לטופס עם המזהה הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forForm('1234567890abcdefghijklmnopqrstuvwxyz') .onFormSubmit() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
key | String | המזהה של הטופס |
חזרה
Form
– ה-FormTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
for Spreadsheet(sheet)
יצירת Spreadsheet
שמקושר לגיליון האלקטרוני הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forSpreadsheet(SpreadsheetApp.getActive()) .onEdit() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
sheet | Spreadsheet | הגיליון האלקטרוני |
חזרה
Spreadsheet
– ה-SpreadsheetTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
for Spreadsheet(key)
יצירת Spreadsheet
שמקושר לגיליון האלקטרוני עם המזהה הנתון והחזרתו.
ScriptApp.newTrigger('myFunction') .forSpreadsheet('1234567890abcdefghijklmnopqrstuvwxyz') .onEdit() .create();
פרמטרים
שם | סוג | תיאור |
---|---|---|
key | String | המזהה של הגיליון האלקטרוני |
חזרה
Spreadsheet
– ה-SpreadsheetTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
for User Calendar(emailId)
הפונקציה מחזירה בונה ליצירת טריגרים ביומן.
פרמטרים
שם | סוג | תיאור |
---|---|---|
email | String | מזהה האימייל של יומן המשתמש שהטריגר עוקב אחריו. |
חזרה
Calendar
– ה-CalendarTriggerBuilder החדש.
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.googleapis.com/auth/calendar.events
-
https://www.googleapis.com/auth/calendar.events.readonly
-
https://www.google.com/calendar/feeds
time Based()
יצירת Clock
והחזרתו לצורך בניית טריגרים מבוססי-זמן.
ScriptApp.newTrigger('myFunction').timeBased().atDate(2013, 10, 31).create();
חזרה
Clock
– ה-ClockTriggerBuilder החדש
אישור
סקריפטים שמשתמשים בשיטה הזו דורשים הרשאה עם אחד או יותר מהיקפי הגישה הבאים:
-
https://www.googleapis.com/auth/script.scriptapp