ComponentOne DataGrid for WPF and Silverlight
CommittedRowEdit Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : CommittedRowEdit Event
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 System.EventHandler(Of DataGridRowEventArgs)
public event System.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