TcxPivotGridCustomization.Form Property
Provides access to the customization form.
Declaration
property Form: TcxPivotGridCustomCustomizationForm read;
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