gpt4 book ai didi

google-apps-script - 在 Google 文档中缩进段落 - Google Apps 脚本

转载 作者:行者123 更新时间:2023-12-04 02:31:29 25 4
gpt4 key购买 nike

我正在尝试使用 Google Apps 脚本缩进一个段落 - 只是一个普通的缩进。这应该是世界上最简单的事情,但事实证明它非常令人沮丧。
下面是我正在调用的代码的相关部分,请记住我正在做的其他所有事情(下划线、设置粗体等)都运行良好。

function AppendDocument(){
var doc = DocumentApp.openById('____________________');
var body = doc.getBody();
var myParagraph = body.appendParagraph("Hello This is a paragraph - I want to indent this please");
myParagraph.setUnderline(true); //<-- Things like this work fine
myParagraph.setIndentStart(72.0); //I just randomly chose 72. No number is working.
}

最佳答案

您需要定义所有缩进参数:

myParagraph.setIndentFirstLine(72);
myParagraph.setIndentStart(72);
myParagraph.setIndentEnd(72*2);
请记住,您传递的参数在 中。排版点 .看看我为什么使用 72 作为基数。

如果您单击此处的标识选项:
example
您将看到如何通过 UI 定义缩进选项:
example2
然后,您可以了解如何在 Google Apps 脚本中定义它们。您只需要正确转换即可。在 UI 中,您使用英寸定义缩进长度。为了找到打印点和英寸之间的精确转换,您可以 google它:
1 inch (UI) = 72 typographic points (Google Apps Script)

关于google-apps-script - 在 Google 文档中缩进段落 - Google Apps 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63953619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com