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。
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getIndex()
親のタブの 0 から始まるインデックスを取得します。
戻る
Integer
- 親内のタブのインデックス。
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getTitle()
タブのタイトルを取得します。
戻る
String
- タブのタイトル。
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
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
- タブのタイプ。
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上を使用した承認が必要です。
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents