使用WordApi 1.3,我能够在Word文档中插入表格,但是现在我想将表格的背景更改为自定义RGB颜色。我阅读了文档here,但内容很少。另外,没有足够的示例来使用WordApi开发外接程序。
这是将单个表格单元格添加到单词document的代码
function colorTableCell() {
Word.run(function (context) {
var values = [["Apple"]];
var selectionRange = context.document.getSelection();
var table = selectionRange.insertTable(1, 1, "Before", values);
// background coloring code here
return context.sync();
}).catch(function (e) {
console.log(e.message);
})
}
现在,如果我想将表格单元格的背景更改为黑色,该怎么办?