gpt4 book ai didi

google-apps-script - Google Apps 脚本 : is there some way to put submenus in submenus?

转载 作者:行者123 更新时间:2023-12-05 01:06:10 27 4
gpt4 key购买 nike

有没有办法使用 addMenu(name, subMenus) 将子菜单放入 Google 电子表格的子菜单中?或替代方法?

最佳答案

是 :) 但不使用 addMenu(name, subMenus) ;相反,使用 addSubMenu .

请引用 Custom menus in Google Docs, Sheets, Slides, or Forms .

Custom Menus in G Suite

这是代码 -

function onOpen() {
var ui = SpreadsheetApp.getUi();
// Or DocumentApp or FormApp.
ui.createMenu('Custom Menu')
.addItem('First item', 'menuItem1')
.addSeparator()
.addSubMenu(ui.createMenu('Sub-menu1')
.addItem('Second item', 'menuItem2').addSubMenu(ui.createMenu('Sub-menu2')
.addItem('Third item', 'menuItem3')))
.addToUi();
}

function menuItem1() {
SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
.alert('You clicked the first menu item!');
}

function menuItem2() {
SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
.alert('You clicked the second menu item!');
}

function menuItem3() {
SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
.alert('You clicked the third menu item!');
}

据我所知,在子菜单中可以创建的子菜单数量没有记录限制。

希望这可以帮助!

关于google-apps-script - Google Apps 脚本 : is there some way to put submenus in submenus?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20443158/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com