Skip to content

工作表

删除活动工作表。

document.getElementById("run").addEventListener("click", run);

async function run() {
  await Excel.run(async (context) => {
    context.workbook.worksheets.getActiveWorksheet().delete();
  });
}
<button id="run">运行</button>

删除指定工作表并新增。

document.getElementById("run").addEventListener("click", run);

async function run() {
  await Excel.run(async (context) => {
    const sheets = context.workbook.worksheets
    sheets.getItem("输出").delete();
    sheets.add("输出");
  });
}
<button id="run">运行</button>

联系 math@baima.site