我试图使用office.js设置页眉,但代码错误
dev文档: https://docs.microsoft.com/zh-cn/javascript/api/excel/excel.headerfooter?view=office-js
我的代码:
function text() {
Excel.run(function (context) {
const myr = context.workbook.worksheets.getItem("Sheet1");
myr.HeaderFooter.centerFooter = "&Z";
return context.sync();
}).catch(errorHandler);
};
任何帮助或指导将不胜感激!