Styling a custom spreadsheet menu item using Google Apps Script

前端 未结 2 1540
鱼传尺愫
鱼传尺愫 2021-01-16 04:38

I have a custom menu on a Google Sheets:

function onOpen() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var csvMenuEntries = [{name: \"Save as CSV f         


        
相关标签:
2条回答
  • 2021-01-16 05:18

    I don't think this is supported by the current API.

    0 讨论(0)
  • 2021-01-16 05:35

    This isn't supported, but you can add some Unicode symbols to the menu entries' names so they stand out a little from the other options.

    Most symbols from this site work: http://copypastecharacter.com/

    This is what I've been using to highlight some help menu entries.

    0 讨论(0)
提交回复
热议问题