'Declaration Public Event RowsSwapped As EventHandler(Of RowsSwappedEventArgs)
'Usage Dim instance As Worksheet Dim handler As EventHandler(Of RowsSwappedEventArgs) AddHandler instance.RowsSwapped, handler
public event EventHandler<RowsSwappedEventArgs> RowsSwapped
Event Data
The event handler receives an argument of type RowsSwappedEventArgs containing data related to this event. The following RowsSwappedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Row1 | Gets the first row that is swapped during sorting. |
Row2 | Gets the second row that is swapped during sorting. |
Example
See Also