Skip to main content

VGridControlBase.CloseEditor() Method

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

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.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