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 से जुड़ा टाइप.