'Declaration
Public Event SelectionChanged As EventHandler(Of SelectionChangedEventArgs(Of Integer))
public event EventHandler<SelectionChangedEventArgs<int>> SelectionChanged
Event Data
The event handler receives an argument of type SelectionChangedEventArgs<T> containing data related to this event. The following SelectionChangedEventArgs<T> properties provide information specific to this event.
Property | Description |
---|---|
AddedItems | Gets a collection which contains the items that were selected. |
RemovedItems | Gets a collection which contains the items that were unselected. |
See Also