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. var tabs = DocumentApp.openById(DOCUMENT_ID).getTabs(); // Get a specific tab based on the tab ID. // TODO(developer): Replace the IDs with your own. var tab = DocumentApp.openById(DOCUMENT_ID).getTab(TAB_ID);
方法
方法 | 返回类型 | 简介 |
---|---|---|
asDocumentTab() | DocumentTab | 以 DocumentTab 的形式检索标签页内容。 |
getChildTabs() | Tab[] | 检索此标签页中嵌套的子标签页。 |
getId() | String | 检索标签页的 ID。 |
getIndex() | Integer | 检索父标签页内标签页的索引(从 0 开始)。 |
getTitle() | String | 检索标签页的标题。 |
getType() | TabType | 检索标签页的类型。 |
详细文档
asDocumentTab()
getChildTabs()
getId()
检索标签页的 ID。
返回
String
- 标签页的 ID。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getIndex()
检索父标签页内标签页的索引(从 0 开始)。
返回
Integer
- 标签页在父项中的索引。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getTitle()
检索标签页的标题。
返回
String
- 标签页的标题。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getType()
检索标签页的类型。
在投放到更多位置之前,请先使用此方法确定此 Tab
的内容类型
特定类型(使用 asDocumentTab()
)。
var 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. }
返回
TabType
- 标签页的类型。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents