Stay organized with collections Save and categorize content based on your preferences.
ParagraphHeading
An enumeration of the standard paragraph headings.
To call an enum, you call its parent class, name, and property. For example, DocumentApp.ParagraphHeading.NORMAL.
Use the ParagraphHeading enumeration to configure the heading style for ParagraphElement.
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);
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 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. |"]]