TfrxBarcodeView - Color property

We used following script (Fast Report 4) to shade every other row specially Barcode object, but in version 5 the Color property is removed from TfrxBarcodeView object .

procedure Page1BarCode2BeforePrint(Sender: TfrxComponent);
begin
if (<Line#> mod 2) = 0 then
BarCode2.Color := clGray
else
BarCode2.Color := clNone;
end;


o7vxvn.jpg

I think TfrxBarcodeView.Fill.BackColor & TfrxBarcodeView.Fill.ForColor property is added instead of that, is it correct? If yes, I can???t work by BarCode.Fill.BackColor := clGray.

Please tell me what should I do?

Best Regards
Hadi

Comments

  • gpigpi
    edited 7:51PM
    Color property restored. Use latest FR 5.5.11

Leave a Comment