スクリプト トリガーの汎用ビルダー。
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
forDocument(document) | DocumentTriggerBuilder | 指定されたドキュメントに関連付けられた DocumentTriggerBuilder を作成して返します。 |
forDocument(key) | DocumentTriggerBuilder | 指定された ID のドキュメントに関連付けられた DocumentTriggerBuilder を作成して返します。 |
forForm(form) | FormTriggerBuilder | 指定されたフォームに関連付けられた FormTriggerBuilder を作成して返します。 |
forForm(key) | FormTriggerBuilder | 指定された ID のフォームに関連付けられた FormTriggerBuilder を作成して返します。 |
forSpreadsheet(sheet) | SpreadsheetTriggerBuilder | 指定されたスプレッドシートに関連付けられた SpreadsheetTriggerBuilder を作成して返します。 |
forSpreadsheet(key) | SpreadsheetTriggerBuilder | 指定されたスプレッドシートに関連付けられた SpreadsheetTriggerBuilder を作成して返します。
あります。 |
forUserCalendar(emailId) | CalendarTriggerBuilder | カレンダー トリガーを作成するためのビルダーを返します。 |
timeBased() | ClockTriggerBuilder | 時間ベースのトリガーを作成するための ClockTriggerBuilder を作成して返します。 |
詳細なドキュメント
forDocument(document)
指定されたドキュメントに関連付けられた DocumentTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .forDocument(DocumentApp.getActiveDocument()) .onOpen() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
document | Document | ドキュメント |
戻る
DocumentTriggerBuilder
- 新しい DocumentTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
forDocument(key)
指定された ID のドキュメントに関連付けられた DocumentTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .forDocument('1234567890abcdefghijklmnopqrstuvwxyz') .onOpen() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
key | String | ドキュメントの ID |
戻る
DocumentTriggerBuilder
- 新しい DocumentTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
forForm(form)
指定されたフォームに関連付けられた FormTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .forForm(FormApp.getActiveForm()) .onFormSubmit() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
form | Form | フォーム |
戻る
FormTriggerBuilder
- 新しい FormTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
forForm(key)
指定された ID のフォームに関連付けられた FormTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .forForm('1234567890abcdefghijklmnopqrstuvwxyz') .onFormSubmit() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
key | String | フォームの ID |
戻る
FormTriggerBuilder
- 新しい FormTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
forSpreadsheet(sheet)
指定されたスプレッドシートに関連付けられた SpreadsheetTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .forSpreadsheet(SpreadsheetApp.getActive()) .onEdit() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
sheet | Spreadsheet | スプレッドシート |
戻る
SpreadsheetTriggerBuilder
- 新しい SpreadsheetTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
forSpreadsheet(key)
指定されたスプレッドシートに関連付けられた SpreadsheetTriggerBuilder
を作成して返します。
あります。
ScriptApp.newTrigger('myFunction') .forSpreadsheet('1234567890abcdefghijklmnopqrstuvwxyz') .onEdit() .create();
パラメータ
名前 | 型 | 説明 |
---|---|---|
key | String | スプレッドシートの ID |
戻る
SpreadsheetTriggerBuilder
- 新しい SpreadsheetTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
forUserCalendar(emailId)
カレンダー トリガーを作成するためのビルダーを返します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
emailId | String | トリガーがモニタリングするユーザー カレンダーのメール ID。 |
戻る
CalendarTriggerBuilder
- 新しい CalendarTriggerBuilder。
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
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
timeBased()
時間ベースのトリガーを作成するための ClockTriggerBuilder
を作成して返します。
ScriptApp.newTrigger('myFunction') .timeBased() .atDate(2013, 10, 31) .create();
戻る
ClockTriggerBuilder
- 新しい ClockTriggerBuilder
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/script.scriptapp