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.
C#
ColumnView view = (ColumnView)gridControl1.KeyboardFocusView;
if (view.IsEditing)
view.HideEditor();
view.CancelUpdateCurrentRow();
VB
Dim view As ColumnView = CType(gridControl1.KeyboardFocusView, ColumnView)
If view.IsEditing Then view.HideEditor()
view.CancelUpdateCurrentRow()
No comments:
Post a Comment