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

In This Topic
    CommittedEdit Event
    In This Topic
    Occurs after a cell editing has been committed.
    Syntax
    'Declaration
     
    
    Public Event CommittedEdit As EventHandler(Of DataGridCellEventArgs)
    public event EventHandler<DataGridCellEventArgs> CommittedEdit
    Event Data

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

    PropertyDescription
    Gets the cell.  
    Remarks
    This event typically occurs when the user press enter or tab in an editing cell.
    See Also