ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / C1DataGrid Class / RowResized Event

In This Topic
    RowResized Event (C1DataGrid)
    In This Topic
    Occurs when the user release the mouse after dragging the border at the bottom of the column header.
    Syntax
    'Declaration
     
    
    Public Event RowResized As EventHandler(Of DataGridRowEventArgs)
    public event 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