Enum SelectionType
SelectionType
Selection
のタイプ。
SelectionType
は、選択された 1 つ以上のオブジェクトの最も詳細なタイプを表します。たとえば、Table
で 1 つ以上の TableCell
インスタンスが選択されている場合、選択タイプは SelectionType.TABLE_CELL
です。TableCellRange
は、Selection.getTableCellRange
を使用して取得できます。Table
は Selection.getPageElementRange
を使用して取得できます。また、Page
は Selection.getCurrentPage
から取得できます。
列挙型を呼び出すには、親クラス、名前、プロパティを呼び出します。たとえば、
SlidesApp.SelectionType.TEXT
のようにします。
プロパティ
プロパティ | 種類 | 説明 |
UNSUPPORTED | Enum | サポートされていない選択タイプ。 |
NONE | Enum | 選択されていません。 |
TEXT | Enum | テキスト選択 |
TABLE_CELL | Enum | 表のセルの選択。 |
PAGE | Enum | サムネイルのフリムストリップでのページ選択。 |
PAGE_ELEMENT | Enum | ページ要素の選択。 |
CURRENT_PAGE | Enum | 現在のページの選択。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-12-02 UTC。
[null,null,["最終更新日 2023-12-02 UTC。"],[[["`SelectionType` identifies the specific type of selected objects in Google Slides, like text, table cells, or pages."],["When multiple objects of the same type are selected, `SelectionType` reflects the most specific type, enabling access to properties like `TableCellRange` or `PageElementRange`."],["`SelectionType` has several enum values, including `UNSUPPORTED`, `NONE`, `TEXT`, `TABLE_CELL`, `PAGE`, `PAGE_ELEMENT`, and `CURRENT_PAGE`, representing different selection states."],["You can access these values using the syntax `SlidesApp.SelectionType.TEXT` (replace `TEXT` with the desired property)."]]],[]]