'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.
Property | Description |
---|---|
Column | Gets the column corresponding to the editing cell. |
EditingElement | Gets the editing ui element. |
Row | 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