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

In This Topic
    RowResizing Event
    In This Topic
    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 EventHandler(Of DataGridRowEventArgs)
    public event 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