Una enumeración de todos los tipos de elementos.
Para llamar a una enumeración, debes llamar a su clase superior, nombre y propiedad. Por ejemplo,
DocumentApp.ElementType.BODY_SECTION
.
Usa la enumeración ElementType
para verificar el tipo de un elemento determinado, por ejemplo:
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); }
Propiedades
Propiedad | Tipo | Descripción |
---|---|---|
BODY_SECTION | Enum | Es el tipo correspondiente al elemento Body . |
COMMENT_SECTION | Enum | Es el tipo correspondiente al elemento . |
DATE | Enum | El tipo correspondiente a Date
. |
EQUATION | Enum | Es el tipo correspondiente al elemento Equation . |
EQUATION_FUNCTION | Enum | Es el tipo correspondiente al elemento EquationFunction . |
EQUATION_FUNCTION_ARGUMENT_SEPARATOR | Enum | El tipo correspondiente a EquationFunctionArgumentSeparator
. |
EQUATION_SYMBOL | Enum | Es el tipo correspondiente al elemento EquationSymbol . |
RICH_LINK | Enum | Es el tipo correspondiente al elemento RichLink . |
FOOTER_SECTION | Enum | Es el tipo correspondiente al elemento FooterSection . |
FOOTNOTE | Enum | Es el tipo correspondiente al elemento Footnote . |
FOOTNOTE_SECTION | Enum | Es el tipo correspondiente al elemento FootnoteSection . |
HEADER_SECTION | Enum | Es el tipo correspondiente al elemento HeaderSection . |
HORIZONTAL_RULE | Enum | Es el tipo correspondiente al elemento HorizontalRule . |
INLINE_DRAWING | Enum | Es el tipo correspondiente al elemento InlineDrawing . |
INLINE_IMAGE | Enum | Es el tipo correspondiente al elemento InlineImage . |
LIST_ITEM | Enum | Es el tipo correspondiente al elemento ListItem . |
PAGE_BREAK | Enum | Es el tipo correspondiente al elemento PageBreak . |
PARAGRAPH | Enum | Es el tipo correspondiente al elemento Paragraph . |
PERSON | Enum | Es el tipo correspondiente al elemento Person . |
TABLE | Enum | Es el tipo correspondiente al elemento Table . |
TABLE_CELL | Enum | Es el tipo correspondiente al elemento TableCell . |
TABLE_OF_CONTENTS | Enum | Es el tipo correspondiente al elemento TableOfContents . |
TABLE_ROW | Enum | Es el tipo correspondiente al elemento TableRow . |
TEXT | Enum | El tipo correspondiente a Text
. |
UNSUPPORTED | Enum | Es el tipo correspondiente a UnsupportedElement . Elementos no admitidos
representar partes de documentos que no admiten la escritura de secuencias de comandos. |