ComponentOne DataGrid for WPF and Silverlight
RowResized Event (C1DataGrid)

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