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