アクティブなプレゼンテーションでのユーザーの選択。
const selection = SlidesApp.getActivePresentation().getSelection(); const currentPage = selection.getCurrentPage(); const selectionType = selection.getSelectionType();
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
get | Page | 現在アクティブな Page を返します。アクティブなページがない場合、null を返します。 |
get | Page | 選択された Page インスタンスの Page コレクションを返します。Page インスタンスが選択されていない場合は null を返します。 |
get | Page | 選択されたフィルムストリップの Page インスタンスのコレクションを Page として返します。選択が Selection 型でない場合、null を返します。 |
get | Selection | Selection を返します。 |
get | Table | 選択された Table インスタンスの Table コレクションを返します。Table インスタンスが選択されていない場合は null を返します。 |
get | Text | 選択された Text を返します。選択が Selection 型でない場合、null を返します。 |
詳細なドキュメント
get Current Page()
現在アクティブな Page
を返します。アクティブなページがない場合、null
を返します。
const selection = SlidesApp.getActivePresentation().getSelection(); const currentPage = selection.getCurrentPage(); if (currentPage != null) { Logger.log(`Selected current active page ID: ${currentPage.getObjectId()}`); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Page Element Range()
選択された Page
インスタンスの Page
コレクションを返します。Page
インスタンスが選択されていない場合は null
を返します。
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.PAGE_ELEMENT) { const currentPage = selection.getCurrentPage(); const pageElements = selection.getPageElementRange().getPageElements(); Logger.log(`Number of page elements selected: ${pageElements.length}`); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Page Range()
選択されたフィルムストリップの Page
インスタンスのコレクションを Page
として返します。選択が Selection
型でない場合、null
を返します。
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.PAGE) { const pageRange = selection.getPageRange(); Logger.log( `Number of pages in the flimstrip selected: ${ pageRange.getPages().length}`, ); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Selection Type()
Selection
を返します。
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.CURRENT_PAGE) { const currentPage = selection.getCurrentPage(); Logger.log(`Selected current active page ID: ${currentPage.getObjectId()}`); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Table Cell Range()
選択された Table
インスタンスの Table
コレクションを返します。Table
インスタンスが選択されていない場合は null
を返します。
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.TABLE_CELL) { const currentPage = selection.getCurrentPage(); const tableCells = selection.getTableCellRange().getTableCells(); const table = tableCells[0].getParentTable(); Logger.log(`Number of table cells selected: ${tableCells.length}`); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Text Range()
選択された Text
を返します。選択が Selection
型でない場合、null
を返します。
Text
は次の 2 つのシナリオを表します。
1. 選択したテキストの範囲。たとえば、シェイプに「Hello」というテキストがあり、「He」が選択されている場合、返される範囲は Text
= 0、Text
= 2 になります。
2. カーソルの位置。たとえば、シェイプに「Hello」というテキストがあり、カーソルが「H」の後に位置している場合(「H|ello」)、返される範囲は Text
= 1、Text
= 1 になります。
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.TEXT) { const currentPage = selection.getCurrentPage(); const pageElement = selection.getPageElementRange().getPageElements()[0]; const textRange = selection.getTextRange(); Logger.log(`Text selected: ${textRange.asString()}`); }
戻る
承認
このメソッドを使用するスクリプトには、次のスコープの 1 つ以上による承認が必要です。
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations