Tab dalam dokumen Google Dokumen.
// 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');
Metode
Metode | Jenis hasil yang ditampilkan | Deskripsi singkat |
---|---|---|
as | Document | Mengambil konten tab sebagai Document . |
get | Tab[] | Mengambil tab turunan yang bertingkat dalam tab ini. |
get | String | Mengambil ID tab. |
get | Integer | Mengambil indeks tab berbasis 0 dalam induk. |
get | String | Mengambil judul tab. |
get | Tab | Mengambil jenis tab. |
Dokumentasi mendetail
as Document Tab()
get Child Tabs()
Mengambil tab turunan yang disusun bertingkat dalam tab ini.
Pulang pergi
Tab[]
— Tab turunan yang disusun bertingkat dalam tab ini.
Otorisasi
Skrip yang menggunakan metode ini memerlukan otorisasi dengan satu atau beberapa cakupan berikut:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Id()
Mengambil ID tab.
Pulang pergi
String
— ID tab.
Otorisasi
Skrip yang menggunakan metode ini memerlukan otorisasi dengan satu atau beberapa cakupan berikut:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Index()
Mengambil indeks tab berbasis 0 dalam induk.
Pulang pergi
Integer
— Indeks tab dalam induk.
Otorisasi
Skrip yang menggunakan metode ini memerlukan otorisasi dengan satu atau beberapa cakupan berikut:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Title()
Mengambil judul tab.
Pulang pergi
String
— Judul tab.
Otorisasi
Skrip yang menggunakan metode ini memerlukan otorisasi dengan satu atau beberapa cakupan berikut:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Type()
Mengambil jenis tab.
Gunakan metode ini untuk menentukan jenis konten Tab
ini sebelum melakukan transmisi ke jenis yang lebih
spesifik menggunakan as
.
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. }
Pulang pergi
Tab
— Jenis tab.
Otorisasi
Skrip yang menggunakan metode ini memerlukan otorisasi dengan satu atau beberapa cakupan berikut:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents