Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridControlBase.HideEditor() Method

In This Article

Hides and destroys the active editor, and discards any changes made.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#Declaration

public virtual void HideEditor()

#Remarks

The HideEditor method destroys the edited cell’s editor and switches the vertical grid to browse mode. Changes made within the edited cell are discarded. The HideEditor method is automatically called when an end-user presses the ESC key after modifying the cell’s value. Note that calling this method raises the VGridControlBase.HiddenEditor event. Do not call this method in cell editor event handlers (for instance, ButtonClick) since the editor can be destroyed before it finishes processing these events, which leads to exceptions.

If no cell is being edited at the moment, calling the HideEditor method does nothing.

For more information, see Showing and Hiding Editors.

See Also