Enum SelectionType
SelectionType
Selection
的类型。
SelectionType
表示所选一个或多个对象的最具体类型。例如,如果在 Table
中选择了一个或多个 TableCell
实例,则选择类型为 SelectionType.TABLE_CELL
。您可以使用 Selection.getTableCellRange
检索 TableCellRange
。您可以使用 Selection.getPageElementRange
检索 Table
,并从 Selection.getCurrentPage
检索 Page
。
若要调用枚举,您可以调用其父类、名称和属性。例如
SlidesApp.SelectionType.TEXT
。
属性
媒体资源 | 类型 | 说明 |
UNSUPPORTED | Enum | 选择类型不受支持。 |
NONE | Enum | 未做任何选择。 |
TEXT | Enum | 文本选择。 |
TABLE_CELL | Enum | 表格单元格选择。 |
PAGE | Enum | 缩略图缩略图中的页面选择。 |
PAGE_ELEMENT | Enum | 页面元素选择。 |
CURRENT_PAGE | Enum | 当前页面选择。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-02。
[null,null,["最后更新时间 (UTC):2023-12-02。"],[[["`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)."]]],[]]