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