Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
TabType is an enumeration of all the tab types available in DocumentApp.
You can access TabType enum values by calling its parent class (DocumentApp), the enum name (TabType), and the property name.
The getType() method can be used with a tab element to check its type against the TabType enumeration before casting.
Currently, the only available TabType is DOCUMENT_TAB.
TabType
An enumeration of all the tab types.
To call an enum, you call its parent class, name, and property. For example,
DocumentApp.TabType.TAB.
Use the TabType enumeration to check the type of a given element, for instance:
consttab=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.}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[],["The `TabType` enumeration defines the types of tabs within a document. It currently has one property: `DOCUMENT_TAB`, which represents a DocumentTab. To use `TabType`, access it via `DocumentApp.TabType.DOCUMENT_TAB`. The `getType()` method can determine a tab's type, and you should use it for type checking before casting it as a Document Tab with `asDocumentTab()`.\n"]]