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.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["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)."]]],[]]