有没有办法可以将格式应用于自定义菜单项?
例如:
{
theme: 'modern',
menubar: 'customformats',
toolbar: 'customformats',
setup: function(editor) {
editor.addButton('customformats', {
type: 'menubutton',
text: 'Custom Formats',
icon: false,
menu: [
{
text: 'Main Header',
onclick: function() {
editor.insertContent('<h1>Page Header</h1>');
}
},
]
}
}
}
我希望菜单按钮中的“Main Header”文本在插入MCE主体时显示,与内置styleselect
菜单选项的方式相同。文档没有描述任何方法。
或者,我接受能够将styleselect
菜单限制为特定选项。
答案 0 :(得分:0)
找到限制Sub ()
Dim wb1 As Workbook
Dim wb As Workbook
Set wb = ThisWorkbook
Set wb1 = Workbooks.Open("\\Homeshare\Home2.w1.xlsm")
wb.Worksheets("Sheets1").Range("B50").Select
Application.CutCopyMode = False
Selection.Copy
wb1.Worksheets("Production").Range("A1").Select
ActiveSheet.Paste
End Sub
菜单的答案: