Enum TabType

מקש Tabהקלדה

ספירה של כל סוגי הכרטיסיות.

כדי לקרוא למאפיין enum, צריך לקרוא לכיתה ההורה, לשם ולנכס שלו. לדוגמה, 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_TABEnumהסוג התואם ל-DocumentTab.