Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Sorting Event


In This Topic
    Sorting Event
    In This Topic
    Occurs when spread is sorting.
    Syntax
    'Declaration
     
    
    Public Event Sorting As SortingEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As SortingEventHandler
     
    AddHandler instance.Sorting, handler
    public event SortingEventHandler Sorting
    Event Data

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

    PropertyDescription
    Gets whether to sort by rows (or columns).  
    Gets or sets whether to cancel the default processing of sorting.  
    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 Sheet (SheetView object) to be sorted.  
    Gets the SortArgs objects that contain sort criteria and information about how to perform the sort.  
    Gets the SortingMode setting that specifies the sorting behavior.  
    See Also