ComponentOne DataGrid for WPF and Silverlight
CancelingNewRow Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : CancelingNewRow Event
Occurs when a new row is canceled.
Syntax
'Declaration
 
Public Event CancelingNewRow As System.EventHandler(Of DataGridEndingNewRowEventArgs)
public event System.EventHandler<DataGridEndingNewRowEventArgs> CancelingNewRow
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