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

In This Topic
    CommittedRowEdit Event (C1DataGrid)
    In This Topic
    Occurs after a row editing has been committed. A row editing is committed when a cell of the row has been previously edited and the current cell is changed to a cell which does not belong to the edited row.
    Syntax
    'Declaration
     
    
    Public Event CommittedRowEdit As EventHandler(Of DataGridRowEventArgs)
    public event EventHandler<DataGridRowEventArgs> CommittedRowEdit
    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