详细说明:
• Testing bullets
<p class=MsoListParagraph style='text-indent:0in'>Testing bullets</p>
注意:我理解文档表明:
Body.getAsync和Body.setAsync方法不是幂等的。
但子弹是从Outlook UI本身插入的,我希望API能够完全支持它。
答案 0 :(得分:0)
您应该插入HTML无序列表元素,而不是样式段落:
Word.run(function(context) {
var body = context.document.body;
body.insertHtml("<ul><li>Testing Bullet 1</li><li>Testing Bullet 2</li></ul>", Word.InsertLocation.start);
return context.sync();
});