Skip to main content
All docs
V19.1

DataGridView.EndRowEdit Event

Occurs after an in-place editor is closed and a modified cell value is applied or canceled.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

public event RowEditingEventHandler EndRowEdit

Event Data

The EndRowEdit event's data class is RowEditingEventArgs. The following properties provide information specific to this event:

Property Description
Action Indicates whether a user has closed an in-place editor to apply or cancel the modified cell value.
RowHandle Gets the grid’s row handle. Inherited from RowEventArgs.
SourceRowIndex Gets the index of the data source’s record to which the grid’s row corresponds.

Remarks

You can handle the EndRowEdit event to obtain a cell value that a user edited in the in-place editor. To do this, use the DataGridView.GetRow method with the passed row handle that the event’s RowHandle parameter returns.

See Also