ComponentOne DataGrid for WPF and Silverlight
BeginningNewRow Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : BeginningNewRow Event
Occurs when a new row begins to be edited.
Syntax
'Declaration
 
Public Event BeginningNewRow As System.EventHandler(Of DataGridBeginningNewRowEventArgs)
public event System.EventHandler<DataGridBeginningNewRowEventArgs> BeginningNewRow
Event Data

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

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