主题
点击
CommandBars(CommandBarId).Execute()
可以通过 Execute()
方法来控制组件的点击。
以【更多菜单】为例,我们可以在需要的时机,控制它自行打开。
未点击
点击后
语法
表达式.CommandBars(CommandBarId).Execute()
表达式:文档类型应用对象
示例
//@file=base.docx
async function example() {
await instance.ready();
const app = instance.Application;
// 页面定制对象:更多菜单
const moreMenus = await app.CommandBars('MoreMenus');
// 3 秒后触发具体事件
setTimeout(async () => {
// 点击更多菜单
await moreMenus.Execute();
}, 3000);
}