Defines the selection behavior available for items in a RadCollectionView control. This enumeration determines how users can interact with and select items in the collection.
Definition
Namespace:Telerik.Maui.Controls.CollectionView
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum CollectionViewSelectionMode
Fields
Multiple selection mode. Users can select multiple items simultaneously. Each tap on an item toggles its selection state.
C#
Multiple = 2
Selection is disabled. Users cannot select any items in the collection view.
C#
None = 0
Single selection mode. Users can select only one item at a time. Selecting a new item will deselect the previously selected item.
C#
Single = 1