Enum ItemSelectionMode
Definition
- Namespace:
- Tizen.NUI.Components
- Assembly:
- Tizen.NUI.Components.dll
Selection mode of CollecitonView.
[SuppressMessage("Microsoft.Naming", "CA1720: Identifiers should not contain type names", Justification = "Single is the member of enum ItemSelectionMode. there are no possible danger to miss using Single Identifiers.")]
public enum ItemSelectionMode
Fields
| Name | Description |
|---|---|
| Multiple | Multiple selections. Select multiple items and previous selected item still remains selected. |
| None | None of the items can be selected. |
| Single | Single selection. Select item exclusively so previous selected item will be unselected. |
| SingleAlways | Single selection always. It's not possible to unselect all, so after user selects an item, there is always exactly one item selected. To deselect item, clear selection forcely. |