ComponentOne FlexGrid for UWP
C1.UWP.FlexGrid Assembly / C1.Xaml.FlexGrid Namespace / C1FlexGrid Class / SortingColumn Event

In This Topic
    SortingColumn Event
    In This Topic
    Occurs before a column is sorted when the user clicks a column header.
    Syntax
    'Declaration
     
    
    Public Event SortingColumn As EventHandler(Of CellRangeEventArgs)
    public event EventHandler<CellRangeEventArgs> SortingColumn
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    CellRange affected by the event.  
    CellType of the range affected by the event.  
    Index of the column affected by the event.  
    GridPanel that contains the range affected by the event.  
    Index of the row affected by the event.  
    See Also