ComponentOne DataGrid for WPF and Silverlight
BeganEdit Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : BeganEdit Event
Occurs after a cell began to be edited.
Syntax
'Declaration
 
Public Event BeganEdit As System.EventHandler(Of DataGridBeganEditEventArgs)
public event System.EventHandler<DataGridBeganEditEventArgs> BeganEdit
Event Data

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

PropertyDescription
Gets the column corresponding to the editing cell.  
Gets the editing ui element.  
Gets the row corresponding to the editing cell.  
Remarks
This event typically occurs when the user press F2 over a cell or click a cell or a row that already contains the current cell. This event can be used to modify the editing control.
See Also