ComponentOne DataGrid for WPF and Silverlight
CommittingNewRow Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : CommittingNewRow Event
Occurs before a new row is committed, allowing to cancel the action.
Syntax
'Declaration
 
Public Event CommittingNewRow As System.EventHandler(Of DataGridEndingNewRowEventArgs)
public event System.EventHandler<DataGridEndingNewRowEventArgs> CommittingNewRow
Event Data

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

PropertyDescription
Gets or sets a value indicating whether the event is canceled.  
Gets the new row.  
See Also