Enum ElementType

ElementType

Lista wszystkich typów elementów.

Aby wywołać wyliczenie, musisz wywołać jego klasę nadrzędną, nazwę i właściwość. Na przykład: DocumentApp.ElementType.BODY_SECTION.

Użyj wyliczenia ElementType, by sprawdzić typ danego elementu, na przykład:

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);
}

Właściwości

WłaściwośćTypOpis
BODY_SECTIONEnumTyp odpowiadający elementowi Body.
COMMENT_SECTIONEnumTyp odpowiadający elementowi CommentSection.
DATEEnumTyp odpowiadający atrybutowi Date .
EQUATIONEnumTyp odpowiadający elementowi Equation.
EQUATION_FUNCTIONEnumTyp odpowiadający elementowi EquationFunction.
EQUATION_FUNCTION_ARGUMENT_SEPARATOREnumTyp odpowiadający atrybutowi EquationFunctionArgumentSeparator .
EQUATION_SYMBOLEnumTyp odpowiadający elementowi EquationSymbol.
RICH_LINKEnumTyp odpowiadający elementowi RichLink.
FOOTER_SECTIONEnumTyp odpowiadający elementowi FooterSection.
FOOTNOTEEnumTyp odpowiadający elementowi Footnote.
FOOTNOTE_SECTIONEnumTyp odpowiadający elementowi FootnoteSection.
HEADER_SECTIONEnumTyp odpowiadający elementowi HeaderSection.
HORIZONTAL_RULEEnumTyp odpowiadający elementowi HorizontalRule.
INLINE_DRAWINGEnumTyp odpowiadający elementowi InlineDrawing.
INLINE_IMAGEEnumTyp odpowiadający elementowi InlineImage.
LIST_ITEMEnumTyp odpowiadający elementowi ListItem.
PAGE_BREAKEnumTyp odpowiadający elementowi PageBreak.
PARAGRAPHEnumTyp odpowiadający elementowi Paragraph.
PERSONEnumTyp odpowiadający elementowi Person.
TABLEEnumTyp odpowiadający elementowi Table.
TABLE_CELLEnumTyp odpowiadający elementowi TableCell.
TABLE_OF_CONTENTSEnumTyp odpowiadający elementowi TableOfContents.
TABLE_ROWEnumTyp odpowiadający elementowi TableRow.
TEXTEnumTyp odpowiadający atrybutowi Text .
UNSUPPORTEDEnumTyp odpowiadający wartości UnsupportedElement. Nieobsługiwane elementy przedstawiają te fragmenty dokumentu, które nie obsługują obsługi skryptów.