SelectionType rappresenta il tipo più specifico di uno o più oggetti selezionati. Ad esempio, se una o più istanze TableCell sono selezionate in una Table, il tipo di selezione è SelectionType.TABLE_CELL. TableCellRange può essere recuperato utilizzando Selection.getTableCellRange. Table può essere recuperato
utilizzando Selection.getPageElementRange, mentre Page può essere recuperato
da Selection.getCurrentPage.
Per chiamare un'enumerazione, devi chiamare la classe, il nome e la proprietà principali. Ad esempio,
SlidesApp.SelectionType.TEXT.
Proprietà
Proprietà
Tipo
Descrizione
UNSUPPORTED
Enum
Un tipo di selezione non supportato.
NONE
Enum
Nessuna selezione.
TEXT
Enum
Selezione del testo.
TABLE_CELL
Enum
Selezione delle celle della tabella.
PAGE
Enum
Selezione della pagina nel riquadro delle miniature.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 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)."]]],[]]