我必须在这里遗漏一些明显的东西 - 但是如何使用Google Apps脚本在表格顶部添加表格。我知道这个:
var doc = DocumentApp.getActiveDocument();
var top = doc.getBody().getChild(0);
top.asParagraph().insertText(0, data);
将我的变量(在本例中为'数据')放在文档的顶部 - 但我似乎无法在此位置使用append.table执行任何操作?
答案 0 :(得分:1)
要插入表格,请使用Body对象的insertTable
方法。
function insertTable() {
var doc = DocumentApp.getActiveDocument();
doc.getBody().insertTable(0, [['This', 'is'], ['my', 'table']]);
}
第一个参数是表的索引:0 =文档的开头。