Как добавить поле слияния при вставке таблицы с помощью 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);
})