windowsforms-devexpress-dot-xtraverticalgrid-dot-vgridcontrolbase-1a805cde.md
Fires before the Customization Form is closed.
Namespace : DevExpress.XtraVerticalGrid
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
public event EventHandler HideCustomizationForm
Public Event HideCustomizationForm As EventHandler
The HideCustomizationForm event's data class is EventArgs.
Handle the HideCustomizationForm event to perform any action needed before the Customization Form is closed. This event is raised regardless of whether the form is closed by an end-user or in code by calling the VGridControlBase.HideCustomization method.
Note
After the Customization Form is closed, it is destroyed and the grid’s VGridControlBase.CustomizationForm property returns null ( Nothing in Visual Basic). If invoked again, the form will be recreated with default settings. Thus, you don’t have to perform any cleanup of the form’s settings within the HideCustomizationForm event handler.
See Also