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.FormBounds Property

Specifies the bounding rectangle of the customization form.

#Declaration

Delphi
property FormBounds: TRect read; write;

#Property Value

Type
TRect

#Remarks

Use the FormBounds property to specify the coordinates of all the corners of the customization form. The position of the form is relative to the screen.

The following code example positions the customization form to the top right corner of the screen:

with PivotGrid.Customization do
  begin
    FormBounds :=
      Rect(Screen.Width - 200, 0, Screen.Width, 300);
    Visible := True;
  end;
See Also