问题描述
我正在尝试使用 office js 在 word 中插入内容控件。 但是当我双击时,在空白区域。当我尝试使用以下方法插入时,我得到了选择灰色区域:
addParagraph() {
Word.run((context) => {
let rangeSelected = context.document.getSelection();
let Paragraph = rangeSelected.insertContentControl();
Paragraph.appearance = "BoundingBox";
Paragraph.cannotDelete = false;
Paragraph.placeholderText = "Your paragraph text goes here";
return context.sync().then(function () {
Paragraph.insertText("new Paragraph",Word.InsertLocation.start);
});
});
}
没有插入任何内容。 否则会插入一个带有占位符的空控件:单击或点击此处输入文本。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)