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

时间:2018-04-25 09:00:40

标签: google-apps-script icons menuitem

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

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

谢谢!

1 个答案:

答案 0 :(得分:2)

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

// if tap is within boundaries of the background widget
if (rectangle.contains(tapUpDetails.globalPosition)) {
  // your code here
}

您可以在这里找到一些codes