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.CloseEditor() Method

In This Article

Hides the active editor saving any changes made. The active editor is destroyed after this method call.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

public virtual void CloseEditor()

#Remarks

Cell values are edited by editors from the DevExpress Editors Library or their descendants. Unlike the VGridControlBase.HideEditor method which simply closes the active editor, the CloseEditor method also saves the changes made to the edited cell’s content. This method can be useful, for instance, when you need to close the text editor and to save its contents when the input string length reaches a predefined value.

The CloseEditor method is automatically called when the end-user accepts the edited value.

When you invoke the CloseEditor or HideEditor() method, the in-place cell editor is closed and destroyed. Do not call this method in editor event handlers (for instance, ButtonClick) since the editor may be destroyed before it finishes processing these events, which leads to exceptions.

See Also