Spread WinForms 15
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Sorted Event


Sorted Event
Occurs when spread is sorted.
Syntax
'Declaration
 
Public Event Sorted As SortedEventHandler
 
'Usage
 
Dim instance As FpSpread
Dim handler As SortedEventHandler
 
AddHandler instance.Sorted, handler
Event Data

The event handler receives an argument of type SortedEventArgs containing data related to this event. The following SortedEventArgs properties provide information specific to this event.

PropertyDescription
Gets whether to sort by rows (or columns).  
Gets the index of the starting column of the block of cells to sort.  
Gets the number of columns in the block of cells to sort.  
Gets the index of the starting row of the block of cells to sort.  
Gets the number of rows in the block of cells to sort.  
Gets the SheetView object.  
Gets the SortArgs object that contains sort criteria and information about how to perform the sort.  
Gets the SortingMode setting.  
See Also