SelectionType steht für den spezifischesten Typ eines oder mehrerer ausgewählter Objekte. Wenn beispielsweise eine oder mehrere TableCell-Instanzen in einer Table ausgewählt sind, ist der Auswahltyp SelectionType.TABLE_CELL. Der TableCellRange kann mithilfe des Selection.getTableCellRange abgerufen werden. Der Table kann mithilfe des Selection.getPageElementRange abgerufen werden und der Page kann über den Selection.getCurrentPage abgerufen werden.
Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel:
SlidesApp.SelectionType.TEXT.
Attribute
Attribut
Typ
Beschreibung
UNSUPPORTED
Enum
Ein Auswahltyp, der nicht unterstützt wird.
NONE
Enum
Keine Auswahl.
TEXT
Enum
Textauswahl
TABLE_CELL
Enum
Auswahl von Tabellenzellen
PAGE
Enum
Seitenauswahl im Filmstreifen mit Miniaturansichten
[[["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: 2024-12-03 (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)."]]],[]]