ComponentOne DataGrid for WPF and Silverlight
RowResizing Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : RowResizing Event
Occurs while the user is resizing a row by dragging the border at the bottom of the row header.
Syntax
'Declaration
 
Public Event RowResizing As System.EventHandler(Of DataGridRowEventArgs)
public event System.EventHandler<DataGridRowEventArgs> RowResizing
Event Data

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

PropertyDescription
Gets the row.  
See Also