Skip to main content

VGridControlBase.HideCustomizationForm Event

Fires before the Customization Form is closed.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

Declaration

public event EventHandler HideCustomizationForm

Event Data

The HideCustomizationForm event's data class is EventArgs.

Remarks

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