You are reading help file online using chmlib.com
|
Rave Reports Visual Designer Example GreenBar Effect . |
Top Previous Next |
Using events to get a greenbar effect (alternating background line colors).
{ Event for Rectangle.OnBeforePrint } function Rectangle1_OnBeforePrint(Self: TRaveRectangle); begin if self.FillColor = clLime then self.FillColor := clWhite; else self.FillColor := clLime; end if; end OnBeforePrint;
|
You are reading help file online using chmlib.com
|