我正在尝试在我的 word 文档中插入一个表格,但每次我InvalidArgument
在控制台中遇到异常时。
这是我的代码:
Word.run(function (context) {
var selectionRange = context.document.getSelection();
var paragraph = selectionRange.insertParagraph("", Word.InsertLocation.before);
return context.sync()
.then(function () {
var table = paragraph.insertTable(3, 4, Word.InsertLocation.before, [
["Column1", "Column2", "Column3", "Column4"],
["test1", "test2", "test3", "test4"],
["test5", "test6", "test7", "test8"]
]);
table.styleBuiltIn = Word.Style.gridTable1Light;
})
.then(context.sync)
.catch(function (error) {
console.log(error);
});
})
.catch(function (error) {
console.log('Error: ' + JSON.stringify(error));
if (error instanceof OfficeExtension.Error) {
console.log('Debug info: ' + JSON.stringify(error.debugInfo));
}
});
有什么我做错了吗?