是否可以在Google文档文档的表格中合并同一行的两个单元格?

时间:2014-01-10 15:49:29

标签: google-apps-script google-docs

我在Google文档中的文本文档中有一个表格。是否可以合并同一行的两个单元格(就像在工作表中那样)?如果是这样,怎么样?

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

改编自TableCell.merge()

// 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.