SelectionModelSelectionChangedEventArgs Class
Definition
public class SelectionModelSelectionChangedEventArgs
Properties
| Name | Description |
|---|---|
| DeselectedIndexes | Gets the indexes of the items that were removed from the selection. |
| DeselectedItems | Gets the items that were removed from the selection. |
| SelectedIndexes | Gets the indexes of the items that were added to the selection. |
| SelectedItems | Gets the items that were added to the selection. |
DeselectedIndexes Property
Gets the indexes of the items that were removed from the selection.
public System.Collections.Generic.IReadOnlyList<int> DeselectedIndexes { get; set; }
DeselectedItems Property
Gets the items that were removed from the selection.
public System.Collections.Generic.IReadOnlyList<object> DeselectedItems { get; set; }
SelectedIndexes Property
Gets the indexes of the items that were added to the selection.
public System.Collections.Generic.IReadOnlyList<int> SelectedIndexes { get; set; }
SelectedItems Property
Gets the items that were added to the selection.
public System.Collections.Generic.IReadOnlyList<object> SelectedItems { get; set; }