TcxPivotGridCustomization.FormBounds Property
Specifies the bounding rectangle of the customization form.
Declaration
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