附加元素上方的空行
我想在Google文档页面的顶部插入一个新表格,然后是一段文本,我做了以下操作:
function myFunction() {
var doc = DocumentApp.create("Random mix");
body=doc.getBody();
var cell = [
['Q11','Q21'],
['Q12','Q22']
];
body.insertTable(0,cell);
body.appendParagraph('my paragraphs..');
}
但是,该表仅在第二行(表上方还有一个空白行)。桌子和文本之间总是有空白的线。 表的顶部和带有文本的桌子的顶部如何没有空白行(它们靠在一起)? 感谢您的帮助!
I wanted to insert a new table at the top of a Google docs page, and then a piece of text, I did the following:
function myFunction() {
var doc = DocumentApp.create("Random mix");
body=doc.getBody();
var cell = [
['Q11','Q21'],
['Q12','Q22']
];
body.insertTable(0,cell);
body.appendParagraph('my paragraphs..');
}
However, the table is only on the second row (there is still a blank line above the table). And there is always a blank line between the table and the text.
How can the top of the table and the middle of the table with the text have no blank rows (they are close together)?
Thank you for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我能做的最好的事情
This is the best I could do