| Package | qnx.ui.listClasses |
| Class | public class ListSelectionMode |
| Inheritance | ListSelectionMode Object |
ListSelectionMode class defines how a user interacts with the cells in a List. For example, you can
create a list that allows a user to select multiple cells, or you can define the ListSelectionMode property to disable
all cell selection.
Each mode is defined by one of the following constants:
See also
| Constant | Defined By | ||
|---|---|---|---|
| MULTIPLE : int = 2 [static]
A constant indicating that multiple cells can be selected at any given time. | ListSelectionMode | ||
| NONE : int = 0 [static]
A constant indicating no user-selection. | ListSelectionMode | ||
| SINGLE : int = 1 [static]
A constant indicating that only a single cell can be selected at any given time. | ListSelectionMode | ||
| MULTIPLE | Constant |
public static const MULTIPLE:int = 2A constant indicating that multiple cells can be selected at any given time.
| NONE | Constant |
public static const NONE:int = 0A constant indicating no user-selection.
| SINGLE | Constant |
public static const SINGLE:int = 1A constant indicating that only a single cell can be selected at any given time.