'Declaration
Public Event SelectionChanging As System.EventHandler(Of DataGridSelectionChangedEventArgs)
public event System.EventHandler<DataGridSelectionChangedEventArgs> SelectionChanging
Event Data
The event handler receives an argument of type DataGridSelectionChangedEventArgs containing data related to this event. The following DataGridSelectionChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AddedRanges | Gets the ranges that has been added to the selection. |
RemovedRanges | Gets the ranges that has been removed from the selection. |
See Also