Énumération de tous les types d'éléments.
Pour appeler une énumération, vous appelez sa classe parente, son nom et sa propriété. Par exemple,
DocumentApp.ElementType.BODY_SECTION
.
Utilisez l'énumération ElementType
pour vérifier le type d'un élément donné, par exemple:
var documentTab = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab(); var 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); }
Propriétés
Propriété | Type | Description |
---|---|---|
BODY_SECTION | Enum | Type correspondant à l'élément Body . |
COMMENT_SECTION | Enum | Type correspondant à l'élément . |
DATE | Enum | Type correspondant à Date
. |
EQUATION | Enum | Type correspondant à l'élément Equation . |
EQUATION_FUNCTION | Enum | Type correspondant à l'élément EquationFunction . |
EQUATION_FUNCTION_ARGUMENT_SEPARATOR | Enum | Type correspondant à EquationFunctionArgumentSeparator
. |
EQUATION_SYMBOL | Enum | Type correspondant à l'élément EquationSymbol . |
RICH_LINK | Enum | Type correspondant à l'élément RichLink . |
FOOTER_SECTION | Enum | Type correspondant à l'élément FooterSection . |
FOOTNOTE | Enum | Type correspondant à l'élément Footnote . |
FOOTNOTE_SECTION | Enum | Type correspondant à l'élément FootnoteSection . |
HEADER_SECTION | Enum | Type correspondant à l'élément HeaderSection . |
HORIZONTAL_RULE | Enum | Type correspondant à l'élément HorizontalRule . |
INLINE_DRAWING | Enum | Type correspondant à l'élément InlineDrawing . |
INLINE_IMAGE | Enum | Type correspondant à l'élément InlineImage . |
LIST_ITEM | Enum | Type correspondant à l'élément ListItem . |
PAGE_BREAK | Enum | Type correspondant à l'élément PageBreak . |
PARAGRAPH | Enum | Type correspondant à l'élément Paragraph . |
PERSON | Enum | Type correspondant à l'élément Person . |
TABLE | Enum | Type correspondant à l'élément Table . |
TABLE_CELL | Enum | Type correspondant à l'élément TableCell . |
TABLE_OF_CONTENTS | Enum | Type correspondant à l'élément TableOfContents . |
TABLE_ROW | Enum | Type correspondant à l'élément TableRow . |
TEXT | Enum | Type correspondant à Text
. |
UNSUPPORTED | Enum | Type correspondant à UnsupportedElement . Éléments non compatibles
représentent des parties de document non compatibles avec l'écriture de script. |