Class Trigger  |  Apps Script  |  Google for Developers (original) (raw)

Class Trigger

Stay organized with collections Save and categorize content based on your preferences.

Methods

Method Return type Brief description
getEventType() EventType Returns the event type that the trigger fires on.
getHandlerFunction() String Returns the function that will be called when the trigger fires.
getTriggerSource() TriggerSource Returns the source of events that will cause the trigger to fire.
getTriggerSourceId() String Returns the id specific to the source.
getUniqueId() String Returns a unique identifier that can be used to distinguish triggers from each other.

Detailed documentation

getEventType()

Returns the event type that the trigger fires on.

const triggers = ScriptApp.getProjectTriggers(); for (let i = 0; i < triggers.length; i++) { if (triggers[i].getEventType() === ScriptApp.EventType.CLOCK) { // Some code here - other options are: // ScriptApp.EventType.ON_EDIT // ScriptApp.EventType.ON_FORM_SUBMIT // ScriptApp.EventType.ON_OPEN } }

Return

[EventType](/apps-script/reference/script/event-type) — the event type that this is a trigger for

Scripts that use this method require authorization with one or more of the following scopes:


getHandlerFunction()

Returns the function that will be called when the trigger fires.

// Create a trigger for the script. ScriptApp.newTrigger('myFunction') .forSpreadsheet('id of my spreadsheet') .onEdit() .create(); Logger.log(ScriptApp.getProjectTriggers()[0] .getHandlerFunction()); // logs "myFunction"

Return

String — the method name

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getTriggerSource()

Returns the source of events that will cause the trigger to fire.

For example, a spreadsheet onEdit trigger would return SPREADSHEETS, or a time based trigger would return CLOCK.

const triggers = ScriptApp.getProjectTriggers(); for (let i = 0; i < triggers.length; i++) { if (triggers[i].getTriggerSource() === ScriptApp.TriggerSource.CLOCK) { Logger.log(${triggers[i].getUniqueId()} source is clock); } else if ( triggers[i].getTriggerSource() === ScriptApp.TriggerSource.SPREADSHEETS) { Logger.log(${triggers[i].getUniqueId()} source is spreadsheets); } }

Return

[TriggerSource](/apps-script/reference/script/trigger-source) — the publisher this is a trigger for

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getTriggerSourceId()

Returns the id specific to the source.

For example, if the trigger source is a spreadsheet, this would be the id of the spreadsheet. For clock events this returns null.

Return

String — the id of the entity in the publisher that this is a trigger for

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getUniqueId()

Returns a unique identifier that can be used to distinguish triggers from each other.

Return

String — the unique identifier of the trigger

Authorization

Scripts that use this method require authorization with one or more of the following scopes:

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-12-03 UTC.