ComponentOne DataGrid for WPF and Silverlight
ColumnResized Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : ColumnResized Event
Occurs when the user release the mouse after dragging the border on the right of the column header.
Syntax
'Declaration
 
Public Event ColumnResized As System.EventHandler(Of DataGridColumnEventArgs)
public event System.EventHandler<DataGridColumnEventArgs> ColumnResized
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