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

TcxPivotGridCustomization.Form Property

Provides access to the customization form.

#Declaration

Delphi

#Property Value

Type
TcxPivotGridCustomCustomizationForm

#Remarks

Use this property to access the customization form for the pivot grid. If the form is not visible onscreen, the Form property returns nil. To display the form, set the Visible property to True.

When the form is displayed or hidden, the pivot grid’s OnCustomization event is fired.

The TcxPivotGridCustomCustomizationForm class derives from TForm. To get the dimensions and position of the form, you can use members inherited from TForm (for instance, the BoundsRect property) or the FormBounds property. The properties of the form can be set only when the form is visible while the FormBounds property can be set at any time.

The following code snippet opens the customization form and makes it translucent:

with PivotGrid.Customization do
  begin
    Visible := True;
    Form.AlphaBlendValue := 200;
    Form.AlphaBlend := True;
  end;
See Also