Word with TypeScript SSO
This page is just a reference page for some of the files that the Yeoman Generator creates.
function writeDataToWord(result) {
return Word.run(function (context) {
let data = [];
let userProfileInfo = filterUserProfileInfo(result);
for (let i = 0; i < userProfileInfo.length; i++) {
if (userProfileInfo[i] !== null) {
data.push(userProfileInfo[i]);
}
}
const documentBody = context.document.body;
for (let i = 0; i < data.length; i++) {
if (data[i] !== null) {
documentBody.insertParagraph(data[i], "End");
}
}
return context.sync();
});
}
© 2022 Better Solutions Limited. All Rights Reserved. © 2022 Better Solutions Limited TopPrevNext