edges mirror ?????
?how I make to print edges mirror using rb?
Thanks
Louder
Brazil
Louder Mendes
Brazil
--- posted by geoForum on http://delphi.newswhat.com
Thanks
Louder
Brazil
Louder Mendes
Brazil
--- posted by geoForum on http://delphi.newswhat.com
This discussion has been closed.
Comments
Try using the Report.OnStartPage event to access the
TppReport.Engine.Page.PrinterSetup property to switch the margin values at
runtime based on which page you are printing.
if (Report.AbsolutePageNo mod 2 = 0) then
begin
Report.Engine.Page.PrinterSetup.MarginLeft := ;
Report.Engine.Page.PrinterSetup.MarginRight := ;
end
else
begin
Report.Engine.Page.PrinterSetup.MarginLeft := ;
Report.Engine.Page.PrinterSetup.MarginRight := ;
end;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com