I\'m trying to add entries to the menu of a Google Sheet:
ui.createMenu(\'Push to Sheet\') .addItem(\'Texas\', \'menuItem\') .addItem(\'Illinois\', \'m
No, this information is not exposed. You'll need to define specific functions to handle each menu item.
eg:
function texasItem(){ menuItem('Texas'); } function illinoisItem(){ menuItem('Illinois'); }