在 Office Javascript API 的 Office 2013 版本中,我将创建如下表:
Office.context.document.setSelectedDataAsync(
tbl, {
coercianType: Office.CoercionType.Table,
cellFormat: tableCellFormats,
tableOptions: { filterButton: false }
});
现在有了将范围转换为表格的新方法,我缺少一件事。也就是说,如何在关闭过滤器按钮的情况下创建它。我没有看到可以设置 filterbutton = false 的 Table.options 属性。(见下面的片段):
Excel.run(function (ctx) {
ctx.workbook.tables.add('Sheet1!A1:E7', true);
return ctx.sync();
}).catch(function (error) {
console.log(error);
});
有人可以发布一个关于如何做到这一点的javascript片段吗?