ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / ColumnReordered Event

In This Topic
    ColumnReordered Event
    In This Topic
    Occurs after a move column operation is committed. The move operation can be started by the user when it drops a column header in a new position or when MoveColumn method is called.
    Syntax
    'Declaration
     
    
    Public Event ColumnReordered As EventHandler(Of DataGridColumnEventArgs)
    public event EventHandler<DataGridColumnEventArgs> ColumnReordered
    Event Data

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

    PropertyDescription
    Gets the column.  
    See Also