ComponentOne DataGrid for WPF and Silverlight
ColumnResizing Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : ColumnResizing Event
Occurs while the user is resizing a column by dragging the border on the right of the column header.
Syntax
'Declaration
 
Public Event ColumnResizing As System.EventHandler(Of DataGridColumnEventArgs)
public event System.EventHandler<DataGridColumnEventArgs> ColumnResizing
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