PageHeader.fil.BackColor
creation report in delphi code, how to change the color BackColor of PageHeader, I can not find the property: PageHeader.fil.BackColor
Thank you for your help
Thank you for your help
Comments
Cheers, Paul
sorry I was gone on vacation ...
it does not work with FR6.
LPageHeader1.Fill.backcolor: undeclared identifier
Now this is strange, because a look at the FR VCL 5.6.8 source shows the declaration of TfrxCustomFill does publish BackColor:
More investigation is needed here, but I've run out of time today!
Cheers, Paul
==============================
Reading my post I just spotted a blooper! TfrxCustomFill does not publish BackColor, TfrxBrushFill (a descendant) does!
As a workaround you could do: which in my test program works!
I think this is something you should raise with Support.
Cheers, Paul
TfrxBrushFill (LPageHeader1.Fill) .Backcolor: = $ 00CCFFCC;
super it works!
thank you very much. see you soon