ComponentOne DataGrid for WPF and Silverlight
BeginningRowEdit Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : BeginningRowEdit Event
Occurs before a row begins to be edited. A row begins to be edited when one cell of the row begins editing and there was not previously editing cells in the row.
Syntax
'Declaration
 
Public Event BeginningRowEdit As System.EventHandler(Of DataGridEditingRowEventArgs)
public event System.EventHandler<DataGridEditingRowEventArgs> BeginningRowEdit
Event Data

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

PropertyDescription
Gets or sets a value indicating whether this DataGridEditingRowEventArgs is canceled.  
Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs)
Remarks
You can cancel the event setting DataGridEditingRowEventArgs.Cancel to true.
See Also