Answers for "apps script toast"

0

apps script toast

function toastMessage() {
  SpreadsheetApp.getActive().toast("Message");
}
Posted by: Guest on May-07-2022
0

apps script toast

function toastMessageTimeout() {
  // Display the toast for 15 seconds
  SpreadsheetApp.getActive().toast("Message", "Title", 15);
}
Posted by: Guest on May-07-2022

Code answers related to "apps script toast"

Code answers related to "Javascript"

Browse Popular Code Answers by Language