Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / RangeSorting Event


In This Topic
    RangeSorting Event (GcSpreadSheet)
    In This Topic
    Occurs when a column is about to be automatically sorted.
    Syntax
    'Declaration
     
    Public Event RangeSorting As EventHandler(Of RangeSortingEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    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.

    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