Skip to main content
A newer version of this page is available. .

How to: Discard Changes Made to the Focused Row

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.

    ColumnView view = (ColumnView)gridControl1.FocusedView;
    if (view.IsEditing) 
        view.HideEditor();
    view.CancelUpdateCurrentRow();