Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Đoạn vănTiêu đề
Liệt kê các tiêu đề đoạn văn tiêu chuẩn.
Để gọi một enum, bạn gọi lớp mẹ, tên và thuộc tính của enum đó. Ví dụ: DocumentApp.ParagraphHeading.NORMAL.
Sử dụng liệt kê ParagraphHeading để định cấu hình kiểu tiêu đề cho 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);
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2025-07-26 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. |"]]