Skip to main content

GridControl.EndRowEdit Event

Occurs after a row editor (an in-place editor or edit form, depending on the edit mode set in the grid) is closed and modified cell values are applied or canceled.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.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 Gets whether an end-user has closed a row editor to apply or cancel modified cell values.
RowHandle Gets the row handle. Inherited from RowEventArgs.
SourceRowIndex Gets the index of the record in a data source to which the processed row corresponds. Inherited from SourceRowEventArgs.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

You can handle the EndRowEdit event to obtain cell values of the row edited by an end-user. To do this, use the GridControl.GetRow method with the passed row handle that the event’s RowHandle parameter returns.

See Also