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.HideCustomizationForm Event

Fires before the Customization Form is closed.

Namespace: DevExpress.XtraVerticalGrid

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