ComponentOne DataGrid for WPF and Silverlight
ColumnReordered Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : ColumnReordered Event
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 System.EventHandler(Of DataGridColumnEventArgs)
public event System.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