Un'enumerazione di tutti i tipi di elementi.
Per chiamare un'enumerazione, devi chiamare la classe, il nome e la proprietà principali. Ad esempio,
DocumentApp.ElementType.BODY_SECTION
.
Utilizza l'enumerazione ElementType
per controllare il tipo di un determinato elemento, ad esempio:
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); }
Proprietà
Proprietà | Tipo | Descrizione |
---|---|---|
BODY_SECTION | Enum | Il tipo corrispondente all'elemento Body . |
COMMENT_SECTION | Enum | Il tipo corrispondente all'elemento . |
DATE | Enum | Il tipo corrispondente a Date
. |
EQUATION | Enum | Il tipo corrispondente all'elemento Equation . |
EQUATION_FUNCTION | Enum | Il tipo corrispondente all'elemento EquationFunction . |
EQUATION_FUNCTION_ARGUMENT_SEPARATOR | Enum | Il tipo corrispondente a EquationFunctionArgumentSeparator
. |
EQUATION_SYMBOL | Enum | Il tipo corrispondente all'elemento EquationSymbol . |
RICH_LINK | Enum | Il tipo corrispondente all'elemento RichLink . |
FOOTER_SECTION | Enum | Il tipo corrispondente all'elemento FooterSection . |
FOOTNOTE | Enum | Il tipo corrispondente all'elemento Footnote . |
FOOTNOTE_SECTION | Enum | Il tipo corrispondente all'elemento FootnoteSection . |
HEADER_SECTION | Enum | Il tipo corrispondente all'elemento HeaderSection . |
HORIZONTAL_RULE | Enum | Il tipo corrispondente all'elemento HorizontalRule . |
INLINE_DRAWING | Enum | Il tipo corrispondente all'elemento InlineDrawing . |
INLINE_IMAGE | Enum | Il tipo corrispondente all'elemento InlineImage . |
LIST_ITEM | Enum | Il tipo corrispondente all'elemento ListItem . |
PAGE_BREAK | Enum | Il tipo corrispondente all'elemento PageBreak . |
PARAGRAPH | Enum | Il tipo corrispondente all'elemento Paragraph . |
PERSON | Enum | Il tipo corrispondente all'elemento Person . |
TABLE | Enum | Il tipo corrispondente all'elemento Table . |
TABLE_CELL | Enum | Il tipo corrispondente all'elemento TableCell . |
TABLE_OF_CONTENTS | Enum | Il tipo corrispondente all'elemento TableOfContents . |
TABLE_ROW | Enum | Il tipo corrispondente all'elemento TableRow . |
TEXT | Enum | Il tipo corrispondente a Text
. |
UNSUPPORTED | Enum | Il tipo corrispondente a UnsupportedElement . Elementi non supportati
rappresentano parti di documenti che non supportano lo scripting. |