Enum SelectionType
SelectionType
Typ: Selection
.
Właściwość SelectionType
reprezentuje najbardziej konkretny typ co najmniej 1 wybranego obiektu. Jeśli na przykład w ramach typu Table
wybrano co najmniej 1 instancję TableCell
, typ wyboru to SelectionType.TABLE_CELL
. TableCellRange
można pobrać za pomocą Selection.getTableCellRange
. Obiekt Table
można pobrać za pomocą Selection.getPageElementRange
, a Page
z Selection.getCurrentPage
.
Aby wywołać wyliczenie, wywołaj jej klasę nadrzędną, nazwę i właściwość. Na przykład:
SlidesApp.SelectionType.TEXT
.
Właściwości
Właściwość | Typ | Opis |
UNSUPPORTED | Enum | Nieobsługiwany typ wyboru. |
NONE | Enum | Brak wyboru. |
TEXT | Enum | Zaznaczanie tekstu. |
TABLE_CELL | Enum | Zaznaczenie komórek tabeli. |
PAGE | Enum | Wybór strony na pasku miniatury. |
PAGE_ELEMENT | Enum | Wybór elementu strony. |
CURRENT_PAGE | Enum | Wybór bieżącej strony. |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2023-12-02 UTC.
[null,null,["Ostatnia aktualizacja: 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)."]]],[]]