我的问题:如何使用 Google Apps 脚本将文本设置为 Google Doc 中的标题或副标题?(请参见下面的视觉示例)
在有关格式化段落的 Google Apps 脚本文档中,它们在ParagraphHeading 类中显示了不同类型的 ParagraphHeadings ,然后是Attribute 类,它可以分配给具有一些样式属性的段落。但是,它们都无法将任何文本设置为文档中的标题或副标题。这是如何实现的?
我正在寻找这样的东西:
var doc = DocumentApp.getActiveDocument();
// Append a paragraph, with title.
var par1 = doc.appendParagraph("Title");
par1.setHeading(DocumentApp.ParagraphHeading.TITLE);
// Append a paragraph, with subtitle.
var par2 = doc.appendParagraph("SubTitle");
par2.setHeading(DocumentApp.ParagraphHeading.SUBTITLE);
// Append a paragraph, with heading 1.
var par3 = doc.appendParagraph("Heading 1");
par3.setHeading(DocumentApp.ParagraphHeading.HEADING1);
这就是我的意思: