Property SelectedIndicesDescending
SelectedIndicesDescending
Gets a collection that contains the zero-based indexes of all currently selected items in the ListBox.
[Browsable(false)]
public virtual IReadOnlyList<int> SelectedIndicesDescending { get; }
Property Value
- IReadOnlyList<int>
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