Property SelectedIndicesDescending
SelectedIndicesDescending
Gets a collection that contains the zero-based indexes of all currently selected items in the ListView.
[Browsable(false)]
public IReadOnlyList<long> SelectedIndicesDescending { get; }
Property Value
- IReadOnlyList<long>
An IReadOnlyList<T> containing the indexes of the currently selected items in the control. If no items are currently selected, an empty IReadOnlyList<T> is returned.
Remarks
Indexes are returned in the descending order (maximal index is the first).
- See Also