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 | タブの ID を取得します。 |
get | Integer | 親内のタブの 0 ベースのインデックスを取得します。 |
get | String | タブのタイトルを取得します。 |
get | Tab | タブのタイプを取得します。 |
詳細なドキュメント
as Document Tab()
get Child Tabs()
get Id()
タブの ID を取得します。
戻る
String
- タブの ID。
承認
このメソッドを使用するスクリプトには、次のスコープの 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