在 Google Apps 脚本中将带图标的项目添加到菜单

Add item with icon to a menu in Google Apps Script

是否可以将带有图标的菜单项(如 undo/redo 按钮的图标)添加到自定义菜单项?

documentation of the Class Menu没有提到,所以我想这是不可能的,但也许有办法实现这个?

谢谢!

我想你不能使用自定义图标,但你可以使用 html 字符代码,如下所示:

DocumentApp.getUi().createMenu('☁ Cloud')
  .addItem(" Pen", 'showHtmlBlaBla')
  .addToUi();

你可以在这里找一些codes