我在Google文档中的文本文档中有一个表格。是否可以合并同一行的两个单元格(就像在工作表中那样)?如果是这样,怎么样?
答案 0 :(得分:1)
// Assume we've already located our table
var tableRow = table.getChild(0); // gets first row
var tableCell = tableRow.getChild(3); // gets fourth cell in row
tableCell.merge(); // Merges fourth cell with third cell.