Spread Silverlight Documentation
RangeSorting Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : RangeSorting Event
Occurs when a column is about to be automatically sorted.
Syntax
'Declaration
 
Public Event RangeSorting As System.EventHandler(Of RangeSortingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of RangeSortingEventArgs)
 
AddHandler instance.RangeSorting, handler
public event System.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.

PropertyDescription
Gets whether the automatic sort is ascending.  
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the index of the column to be automatically sorted.  
See Also