Skip to main content
A newer version of this page is available. .

VGridControlBase.HideCustomizationForm Event

Fires before the Customization Form is closed.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

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.DestroyCustomization 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.

For additional information, see Customization Form.

See Also