windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnview-ad27a9c0.md
Fires after row editing was canceled.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DXCategory("Action")]
public event RowObjectEventHandler RowEditCanceled
<DXCategory("Action")>
Public Event RowEditCanceled As RowObjectEventHandler
The RowEditCanceled event's data class is RowObjectEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Row | Gets the processed row. |
| RowHandle | Gets the row’s handle (position). For the ColumnView.RowUpdated event, this property specifies the previous handle (position) of the currently processed row. NewItemRowHandle value when a new row is added. Inherited from RowEventArgs. |
Users can do the following to discard changes made in all cells in a row/card:
ESC twice.Cancel button in the Edit Form.Cancel Edit button in the Data Navigator.See Also