แท็บภายในเอกสาร Google เอกสาร
// 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');
เมธอด
วิธีการ | ประเภทการแสดงผล | รายละเอียดแบบย่อ |
---|---|---|
as | Document | ดึงข้อมูลเนื้อหาแท็บเป็น Document |
get | Tab[] | ดึงข้อมูลแท็บย่อยที่ฝังอยู่ในแท็บนี้ |
get | String | ดึงข้อมูลรหัสของแท็บ |
get | Integer | ดึงข้อมูลดัชนีฐาน 0 ของแท็บภายในรายการหลัก |
get | String | ดึงข้อมูลชื่อแท็บ |
get | Tab | ดึงข้อมูลประเภทแท็บ |
เอกสารประกอบโดยละเอียด
as Document Tab()
get Child Tabs()
get Id()
ดึงข้อมูลรหัสของแท็บ
รีเทิร์น
String
— รหัสของแท็บ
การให้สิทธิ์
สคริปต์ที่ใช้วิธีการนี้ต้องได้รับอนุญาตด้วยขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Index()
ดึงข้อมูลดัชนีฐาน 0 ของแท็บภายในรายการหลัก
รีเทิร์น
Integer
— ดัชนีของแท็บภายในแท็บหลัก
การให้สิทธิ์
สคริปต์ที่ใช้วิธีการนี้ต้องได้รับอนุญาตด้วยขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Title()
ดึงข้อมูลชื่อแท็บ
รีเทิร์น
String
— ชื่อของแท็บ
การให้สิทธิ์
สคริปต์ที่ใช้วิธีการนี้ต้องได้รับอนุญาตด้วยขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Type()
ดึงข้อมูลประเภทแท็บ
ใช้วิธีนี้เพื่อระบุประเภทเนื้อหาของ Tab
นี้ก่อนที่จะแคสต์ไปยังประเภทที่เฉพาะเจาะจงมากขึ้นโดยใช้ 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. }
รีเทิร์น
Tab
— ประเภทของแท็บ
การให้สิทธิ์
สคริปต์ที่ใช้วิธีการนี้ต้องได้รับอนุญาตด้วยขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents