Enum ElementType
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ElementType
การแจกแจงประเภทองค์ประกอบทั้งหมด
หากต้องการเรียกใช้ enum ให้เรียกคลาสหลัก ชื่อ และพร็อพเพอร์ตี้ของ enum นั้น เช่น
DocumentApp.ElementType.BODY_SECTION
ใช้การแจกแจง ElementType
เพื่อตรวจสอบประเภทขององค์ประกอบหนึ่งๆ เช่น
const documentTab =
DocumentApp.getActiveDocument().getActiveTab().asDocumentTab();
const firstChild = documentTab.getBody().getChild(0);
if (firstChild.getType() === DocumentApp.ElementType.PARAGRAPH) {
// It's a paragraph, apply a paragraph heading.
firstChild.asParagraph().setHeading(DocumentApp.ParagraphHeading.HEADING1);
}
พร็อพเพอร์ตี้
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
BODY_SECTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Body |
COMMENT_SECTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ CommentSection
|
DATE | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Date
|
EQUATION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Equation |
EQUATION_FUNCTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ EquationFunction |
EQUATION_FUNCTION_ARGUMENT_SEPARATOR | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ EquationFunctionArgumentSeparator
|
EQUATION_SYMBOL | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ EquationSymbol |
RICH_LINK | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ RichLink |
FOOTER_SECTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ FooterSection |
FOOTNOTE | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Footnote |
FOOTNOTE_SECTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ FootnoteSection |
HEADER_SECTION | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ HeaderSection |
HORIZONTAL_RULE | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ HorizontalRule |
INLINE_DRAWING | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ InlineDrawing |
INLINE_IMAGE | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ InlineImage |
LIST_ITEM | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ ListItem |
PAGE_BREAK | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ PageBreak |
PARAGRAPH | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Paragraph |
PERSON | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Person |
TABLE | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Table |
TABLE_CELL | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ TableCell |
TABLE_OF_CONTENTS | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ TableOfContents |
TABLE_ROW | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ TableRow |
TEXT | Enum | ประเภทที่สอดคล้องกับองค์ประกอบ Text
|
UNSUPPORTED | Enum | ประเภทที่สอดคล้องกับ UnsupportedElement องค์ประกอบที่ไม่รองรับแสดงถึงส่วนของเอกสารที่ไม่รองรับสคริปต์ |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eElementType\u003c/code\u003e is an enumeration used to identify the type of elements within a Google Doc.\u003c/p\u003e\n"],["\u003cp\u003eYou can access \u003ccode\u003eElementType\u003c/code\u003e properties using the format \u003ccode\u003eDocumentApp.ElementType.PROPERTY_NAME\u003c/code\u003e, such as \u003ccode\u003eDocumentApp.ElementType.PARAGRAPH\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003egetType()\u003c/code\u003e method can be used to determine the type of a specific element, enabling conditional logic based on element types.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eElementType\u003c/code\u003e supports a wide range of element types like paragraphs, tables, images, equations, and more, as detailed in the provided properties table.\u003c/p\u003e\n"]]],[],null,["# Enum ElementType\n\nElementType\n\nAn enumeration of all the element types.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nDocumentApp.ElementType.BODY_SECTION`.\n\nUse the [ElementType](#) enumeration to check the type of a given element, for instance:\n\n```javascript\nconst documentTab =\n DocumentApp.getActiveDocument().getActiveTab().asDocumentTab();\nconst firstChild = documentTab.getBody().getChild(0);\nif (firstChild.getType() === DocumentApp.ElementType.PARAGRAPH) {\n // It's a paragraph, apply a paragraph heading.\n firstChild.asParagraph().setHeading(DocumentApp.ParagraphHeading.HEADING1);\n}\n``` \n\n### Properties\n\n| Property | Type | Description |\n|----------------------------------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `BODY_SECTION` | `Enum` | The type corresponding to the [Body](/apps-script/reference/document/body) element. |\n| `COMMENT_SECTION` | `Enum` | The type corresponding to the CommentSection element. |\n| `DATE` | `Enum` | The type corresponding to the [Date](/apps-script/reference/document/date) element. |\n| `EQUATION` | `Enum` | The type corresponding to the [Equation](/apps-script/reference/document/equation) element. |\n| `EQUATION_FUNCTION` | `Enum` | The type corresponding to the [EquationFunction](/apps-script/reference/document/equation-function) element. |\n| `EQUATION_FUNCTION_ARGUMENT_SEPARATOR` | `Enum` | The type corresponding to the [EquationFunctionArgumentSeparator](/apps-script/reference/document/equation-function-argument-separator) element. |\n| `EQUATION_SYMBOL` | `Enum` | The type corresponding to the [EquationSymbol](/apps-script/reference/document/equation-symbol) element. |\n| `RICH_LINK` | `Enum` | The type corresponding to the [RichLink](/apps-script/reference/document/rich-link) element. |\n| `FOOTER_SECTION` | `Enum` | The type corresponding to the [FooterSection](/apps-script/reference/document/footer-section) element. |\n| `FOOTNOTE` | `Enum` | The type corresponding to the [Footnote](/apps-script/reference/document/footnote) element. |\n| `FOOTNOTE_SECTION` | `Enum` | The type corresponding to the [FootnoteSection](/apps-script/reference/document/footnote-section) element. |\n| `HEADER_SECTION` | `Enum` | The type corresponding to the [HeaderSection](/apps-script/reference/document/header-section) element. |\n| `HORIZONTAL_RULE` | `Enum` | The type corresponding to the [HorizontalRule](/apps-script/reference/document/horizontal-rule) element. |\n| `INLINE_DRAWING` | `Enum` | The type corresponding to the [InlineDrawing](/apps-script/reference/document/inline-drawing) element. |\n| `INLINE_IMAGE` | `Enum` | The type corresponding to the [InlineImage](/apps-script/reference/document/inline-image) element. |\n| `LIST_ITEM` | `Enum` | The type corresponding to the [ListItem](/apps-script/reference/document/list-item) element. |\n| `PAGE_BREAK` | `Enum` | The type corresponding to the [PageBreak](/apps-script/reference/document/page-break) element. |\n| `PARAGRAPH` | `Enum` | The type corresponding to the [Paragraph](/apps-script/reference/document/paragraph) element. |\n| `PERSON` | `Enum` | The type corresponding to the [Person](/apps-script/reference/document/person) element. |\n| `TABLE` | `Enum` | The type corresponding to the [Table](/apps-script/reference/document/table) element. |\n| `TABLE_CELL` | `Enum` | The type corresponding to the [TableCell](/apps-script/reference/document/table-cell) element. |\n| `TABLE_OF_CONTENTS` | `Enum` | The type corresponding to the [TableOfContents](/apps-script/reference/document/table-of-contents) element. |\n| `TABLE_ROW` | `Enum` | The type corresponding to the [TableRow](/apps-script/reference/document/table-row) element. |\n| `TEXT` | `Enum` | The type corresponding to the [Text](/apps-script/reference/document/text) element. |\n| `UNSUPPORTED` | `Enum` | The type corresponding to [UnsupportedElement](/apps-script/reference/document/unsupported-element). Unsupported elements represent document portions that do not support scripting. |"]]