'Declaration Public Event RangeSorting As EventHandler(Of RangeSortingEventArgs)
'Usage Dim instance As SheetView Dim handler As EventHandler(Of RangeSortingEventArgs) AddHandler instance.RangeSorting, handler
public event EventHandler<RangeSortingEventArgs> RangeSorting
Event Data
The event handler receives an argument of type RangeSortingEventArgs containing data related to this event. The following RangeSortingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Ascending | Gets whether the automatic sort is ascending. |
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Column | Gets the index of the column to be automatically sorted. |
See Also