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öntem | Dönüş türü | Kısa açıklama |
---|---|---|
as | Document | Sekme içeriğini Document olarak alır. |
get | Tab[] | Bu sekmede iç içe yerleştirilmiş alt sekmeleri alır. |
get | String | Sekmenin kimliğini alır. |
get | Integer | Üst öğe içindeki sekmenin 0 tabanlı dizesini alır. |
get | String | Sekmenin başlığını alır. |
get | Tab | Sekmenin türünü alır. |
Ayrıntılı dokümanlar
as Document Tab()
get Child Tabs()
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
get Id()
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
get Index()
Ü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
get Title()
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
get Type()
Sekmenin türünü alır.
as
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
Tab
: 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