Оптимизируйте свои подборки Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Заголовок абзаца
Перечисление стандартных заголовков абзацев.
Чтобы вызвать перечисление, вы вызываете его родительский класс, имя и свойство. Например, DocumentApp.ParagraphHeading.NORMAL .
Используйте перечисление Paragraph Heading , чтобы настроить стиль заголовка для Paragraph Element .
constbody=DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();// Append a paragraph, with heading 1.constpar1=body.appendParagraph('Title');par1.setHeading(DocumentApp.ParagraphHeading.HEADING1);// Append a paragraph, with heading 2.constpar2=body.appendParagraph('SubTitle');par2.setHeading(DocumentApp.ParagraphHeading.HEADING2);// Append a paragraph, with normal heading.constpar3=body.appendParagraph('Text');par3.setHeading(DocumentApp.ParagraphHeading.NORMAL);
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-07-24 UTC."],[[["\u003cp\u003e\u003ccode\u003eParagraphHeading\u003c/code\u003e enumeration is used to set heading styles for paragraphs in Google Docs.\u003c/p\u003e\n"],["\u003cp\u003eYou can use properties like \u003ccode\u003eNORMAL\u003c/code\u003e, \u003ccode\u003eHEADING1\u003c/code\u003e to \u003ccode\u003eHEADING6\u003c/code\u003e, \u003ccode\u003eTITLE\u003c/code\u003e, and \u003ccode\u003eSUBTITLE\u003c/code\u003e to define different heading levels.\u003c/p\u003e\n"],["\u003cp\u003eThe provided code snippet demonstrates how to append paragraphs with different heading styles using \u003ccode\u003esetHeading()\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eThe table lists all available \u003ccode\u003eParagraphHeading\u003c/code\u003e properties, their types, and descriptions.\u003c/p\u003e\n"]]],[],null,["ParagraphHeading\n\nAn enumeration of the standard paragraph headings.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nDocumentApp.ParagraphHeading.NORMAL`.\n\nUse the `Paragraph``Heading` enumeration to configure the heading style for `Paragraph``Element`.\n\n```javascript\nconst body =\n DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();\n\n// Append a paragraph, with heading 1.\nconst par1 = body.appendParagraph('Title');\npar1.setHeading(DocumentApp.ParagraphHeading.HEADING1);\n\n// Append a paragraph, with heading 2.\nconst par2 = body.appendParagraph('SubTitle');\npar2.setHeading(DocumentApp.ParagraphHeading.HEADING2);\n\n// Append a paragraph, with normal heading.\nconst par3 = body.appendParagraph('Text');\npar3.setHeading(DocumentApp.ParagraphHeading.NORMAL);\n``` \n\nProperties\n\n| Property | Type | Description |\n|------------|--------|-------------------------------------|\n| `NORMAL` | `Enum` | The heading option for normal text. |\n| `HEADING1` | `Enum` | The highest heading option. |\n| `HEADING2` | `Enum` | The second heading option. |\n| `HEADING3` | `Enum` | The third heading option |\n| `HEADING4` | `Enum` | The fourth heading option. |\n| `HEADING5` | `Enum` | The fifth heading option. |\n| `HEADING6` | `Enum` | The lowest heading option. |\n| `TITLE` | `Enum` | The title heading option. |\n| `SUBTITLE` | `Enum` | The subtitle heading option. |"]]