'Declaration
Public Event CommittedEdit As System.EventHandler(Of DataGridCellEventArgs)
public event System.EventHandler<DataGridCellEventArgs> CommittedEdit
Event Data
The event handler receives an argument of type DataGridCellEventArgs containing data related to this event. The following DataGridCellEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cell | Gets the cell. |
Remarks
This event typically occurs when the user press enter or tab in an editing cell.
See Also