Enum TabType

TabTyp

Eine Aufzählung aller Tabtypen.

Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel: DocumentApp.TabType.TAB.

Mit der Aufzählung TabType können Sie den Typ eines bestimmten Elements prüfen, z. B.:

const tab = DocumentApp.getActiveDocument().getActiveTab();
// Use getType() to determine the tab's type before casting.
if (tab.getType() === DocumentApp.TabType.DOCUMENT_TAB) {
  // It's a document tab, write some text to it.
  tab.asDocumentTab().setText('Hello World!');
} else {
  // There are currently no types other than DOCUMENT_TAB.
}

Attribute

AttributTypBeschreibung
DOCUMENT_TABEnumDer Typ, der DocumentTab entspricht.