有没有办法在指定位置的CommandBar上放置菜单项/ commandbarbutton?例如,在位置0(顶部)。
我正在使用直接代码添加(),我很失望地看到AddAT()不存在。我的菜单出现并正常工作。我想将它添加到指定的位置。
button = (CommandBarButton)
cellbar.Controls.Add(MsoControlType.msoControlButton,
Missing.Value, Missing.Value,
cellbar.Controls.Count, true);
感谢
答案 0 :(得分:2)
第四个论点是“之前”。所以将代码更改为:
button = (CommandBarButton)
cellbar.Controls.Add(MsoControlType.msoControlButton,
Missing.Value, Missing.Value,
1, true);