要使用Word API/Office JS实现Word在拼写错误时显示红色曲线,可以按照以下步骤进行操作:
Word.run(function (context) {
var document = context.document;
document.settings.enableSpellingReform = true;
document.settings.checkSpellingAsYouType = true;
return context.sync();
}).catch(function (error) {
console.log(error);
});
Word.run(function (context) {
var document = context.document;
var range = document.getSelection();
range.font.highlightColor = "#FF0000"; // 设置高亮颜色为红色
return context.sync();
}).catch(function (error) {
console.log(error);
});
这是使用Word API/Office JS实现Word在拼写错误时显示红色曲线的基本步骤。你可以根据具体需求进行进一步的定制和扩展。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云