Enum TabType

タブタイプ

すべてのタブタイプの列挙。

列挙型を呼び出すには、その親クラス、名前、プロパティを呼び出します。たとえば、 DocumentApp.TabType.TAB です。

TabType 列挙を使用して、特定の要素の型を確認します。たとえば、次のようにします。

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.
}

プロパティ

プロパティタイプ説明
DOCUMENT_TABEnumDocumentTab に対応する型。