Class Tab

Sekme

Google Dokümanlar dokümanındaki bir sekme.

// Get all of the first-level tabs (tabs that are not nested within a parent
// tab) in the document.
// TODO(developer): Replace the ID with your own.
const tabs = DocumentApp.openById('123abc').getTabs();

// Get a specific tab based on the tab ID.
// TODO(developer): Replace the IDs with your own.
const tab = DocumentApp.openById('123abc').getTab('123abc');

Yöntemler

YöntemDönüş türüKısa açıklama
asDocumentTab()DocumentTabSekme içeriğini DocumentTab olarak alır.
getChildTabs()Tab[]Bu sekmede iç içe yerleştirilmiş alt sekmeleri alır.
getId()StringSekmenin kimliğini alır.
getIndex()IntegerÜst öğe içindeki sekmenin 0 tabanlı dizesini alır.
getTitle()StringSekmenin başlığını alır.
getType()TabTypeSekmenin türünü alır.

Ayrıntılı dokümanlar

asDocumentTab()

Sekme içeriğini DocumentTab olarak alır.

Return

DocumentTab: Sekme DocumentTab olarak gösterilir.


getChildTabs()

Bu sekmede iç içe yerleştirilmiş alt sekmeleri alır.

Return

Tab[]: Bu sekmede iç içe yerleştirilmiş alt sekmeler.

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getId()

Sekmenin kimliğini alır.

Return

String: Sekmenin kimliği.

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getIndex()

Üst öğe içindeki sekmenin 0 tabanlı dizesini alır.

Return

Integer: Üst öğedeki sekmenin dizini.

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getTitle()

Sekmenin başlığını alır.

Return

String: Sekmenin başlığı.

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getType()

Sekmenin türünü alır.

asDocumentTab() kullanarak daha spesifik bir türe yayınlamadan önce bu Tab'ün içerik türünü belirlemek için bu yöntemi kullanın.

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

Return

TabType: Sekmenin türü.

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents