AI-generated Key Takeaways
-
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 likeTableCellRange
orPageElementRange
. -
SelectionType
has several enum values, includingUNSUPPORTED
,NONE
,TEXT
,TABLE_CELL
,PAGE
,PAGE_ELEMENT
, andCURRENT_PAGE
, representing different selection states. -
You can access these values using the syntax
SlidesApp.SelectionType.TEXT
(replaceTEXT
with the desired property).
Type of Selection
.
The Selection
represents the most specific type of one or more objects that are
selected. As an example if one or more Table
instances are selected in a Table
, the selection type is Selection
. The Table
can be
retrieved by using the Selection.getTableCellRange
. The Table
can be retrieved by
using the Selection.getPageElementRange
and the Page
can be retrieved from the
Selection.getCurrentPage
.
To call an enum, you call its parent class, name, and property. For example,
SlidesApp.SelectionType.TEXT
.
Properties
Property | Type | Description |
---|---|---|
UNSUPPORTED | Enum | A selection type that is not supported. |
NONE | Enum | No selection. |
TEXT | Enum | Text selection. |
TABLE_CELL | Enum | Table cell selection. |
PAGE | Enum | Page selection in the thumbnail flimstrip. |
PAGE_ELEMENT | Enum | Page element selection. |
CURRENT_PAGE | Enum | Current page selection. |