Я пытаюсь изменить стиль шрифта всего документа, используя следующий код ...
Word.run(function (context) {
const body = context.document.body;
body.font.set({
name: "Arial"
});
return context.sync();
})
.catch(function (error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
};
});
В консоли я получаю следующую ошибку:
Error: GeneralException: Cannot read property 'VA' of null
Debug info: {"code":"GeneralException","message":"Cannot read property 'VA' of null","errorLocation":"Font.name","statement":"font.name=...;","surroundingStatements":["var root=context.root;","var body=root.body;","// Instantiate {body}","var font=body.font;","// Instantiate {font}","// >>>>>","font.name=...;","// <<<<<"],"fullStatements":["Please enable config.extendedErrorLogging to see full statements."]}
Любая помощьбудет высоко оценен ...