Enum SelectionType
SelectionType
Typ von Selection
.
SelectionType
stellt den spezifischsten Typ eines oder mehrerer ausgewählter Objekte dar. Wenn beispielsweise eine oder mehrere TableCell
-Instanzen in einer Table
ausgewählt sind, ist der Auswahltyp SelectionType.TABLE_CELL
. TableCellRange
kann mit Selection.getTableCellRange
abgerufen werden. Die Table
kann mithilfe von Selection.getPageElementRange
abgerufen werden und die Page
kann aus Selection.getCurrentPage
abgerufen werden.
Um eine Enum aufzurufen, rufen Sie ihre übergeordnete Klasse, ihren Namen und ihre Eigenschaft auf. Beispiel:
SlidesApp.SelectionType.TEXT
.
Attribute
Property | Typ | Beschreibung |
UNSUPPORTED | Enum | Ein Auswahltyp, der nicht unterstützt wird. |
NONE | Enum | Keine Auswahl. |
TEXT | Enum | Textauswahl |
TABLE_CELL | Enum | Auswahl der Tabellenzelle. |
PAGE | Enum | Seitenauswahl auf dem Rand der Miniaturansicht. |
PAGE_ELEMENT | Enum | Auswahl des Seitenelements. |
CURRENT_PAGE | Enum | Aktuelle Seitenauswahl. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2023-12-02 (UTC).
[null,null,["Zuletzt aktualisiert: 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)."]]],[]]