From the design tab, select the region and set the pen style to ppClear in the object inspector or by selecting No Line from line color in the draw toolbar.
Bob, thanks, that seems to work at design time. And how can that be done in the Report Designer at runtime (I'm mostly using that to create *.rtm files)?
Comments
From the design tab, select the region and set the pen style to ppClear in
the object inspector or by selecting No Line from line color in the draw
toolbar.
Bob
thanks, that seems to work at design time. And how can that be done in
the Report Designer at runtime (I'm mostly using that to create *.rtm
files)?
Regards Gunter
In the appropriate event use the following:
Region.Pen.Style := psClear;
Bob
Thanks