如何在文档正文中使用Office.js插入表格时添加合并字段

时间:2019-07-10 13:59:29

标签: ms-word ms-office office-js add-in office-addins

在文档正文中使用Office.js插入表格时如何添加邮件合并字段。

对于创建表,下面的代码可以工作,但是我想在创建表时插入合并字段。

Word.run(function (context) {
            // Create a proxy object for the document body.
            var body = context.document.body;

            body.insertTable(2, 2, Word.InsertLocation.end, [["a","b"], ["c","d"]]);

            // Synchronize the document state by executing the queued commands, and return a promise to indicate task completion.
            return context.sync();
        }).catch(function (e) {

            console.log(e.message);
        })

0 个答案:

没有答案