Back to Devexpress

How to: Discard Changes Made to the Focused Row

windowsforms-3060-controls-and-libraries-data-grid-examples-data-editing-how-to-discard-changes-made-to-the-focused-row.md

latest775 B
Original Source

How to: Discard Changes Made to the Focused Row

  • Nov 13, 2018

The code below discards changes made to the focused record by calling the ColumnView.CancelUpdateCurrentRow method. If an editor is opened for a specific record cell, it is closed while discarding the user’s modifications.

csharp
ColumnView view = (ColumnView)gridControl1.FocusedView;
    if (view.IsEditing) 
        view.HideEditor();
    view.CancelUpdateCurrentRow();
vb
Dim view As ColumnView = CType(gridControl1.FocusedView, ColumnView)
    If view.IsEditing Then view.HideEditor()
    view.CancelUpdateCurrentRow()