附加元素上方的空行

发布于 2025-01-20 18:29:31 字数 360 浏览 0 评论 0原文

我想在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静若繁花 2025-01-27 18:29:31

这是我能做的最好的事情

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..');
  body.removeChild(body.getChild(1));
}

This is the best I could do

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..');
  body.removeChild(body.getChild(1));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文