DocumentApp脚本 - 合并单元格不起作用

时间:2015-08-02 20:31:11

标签: javascript merge cell

 cell.appendTable([["Hello"],["Hello","I","J"]])

输出到:

|Hello|
|Hello|I    |J     |

我想合并第一行。

在scripts.google.com DocumentApp中开发。 - 使用表和单元格元素

2 个答案:

答案 0 :(得分:0)

如果您希望有一个合并的单元格,就像您在电子表格中可以做的那样,这是不可能的。仅仅因为在Google文档中这是不可能的(至少现在还没有)。因此,API无法执行此操作(它只能执行手动操作的操作)。

尝试 merge()函数:将元素与前一个相同类型的兄弟元素合并。

  

只能合并相同ElementType的元素。任何孩子   当前元素中包含的元素将移动到前面的元素   兄弟元素。

当前元素已从文档中删除。

 var body = DocumentApp.getActiveDocument().getBody();

 // Append two paragraphs to the document.
 var par1 = body.appendParagraph('Paragraph 1.');
 var par2 = body.appendParagraph('Paragraph 2.');

 // Merge the newly added paragraphs into a single paragraph.
 par2.merge();

<强> Reference

答案 1 :(得分:0)

找到答案。 Google App Script尚未支持合并单元格功能。