CHMlib Logo Leading Translation Management System for Translation Agencies, Top Translation Management Software for Freelance Translators, Time Tracking Software, Word Count, Character Count and Line Count Software, Computer Assisted Translation Tool for Easy Word Count, Clipboard Character Count Software, User-Friendly Translation Memory Software, Terminology Management Software, Terminology Management Server, Microsoft Glossary Software, Dictionary of Acronyms, Social Network for Translators and Translation Agencies, Acronyms and Abbreviations Search Engine, Russian Translation Lab, Ukrainian Translation Lab.
You are reading help file online using chmlib.com
CrisisHelper - First Aid in Tough Times of World Economic Crisis


_bm0 Rave Reports Developer Reference

TBaseReport. OnPrintFooter event (read/write/published)

Top  Previous  Next

Declaration

procedure OnPrintFooter(Sender: TObject);

 

Category

Control

 

Description

This event will be called after the body for each page that has been printed. This can be useful for printing similar footers for each page.

 

See also

TBaseReport Class, GotoFooter, PrintFooter, OnPrintHeader

 

Example (Delphi)

procedure TReportForm.PrintFooterReport5(Sender: TObject);

begin { PrintFooterReport5 }

with Sender as TBaseReport do begin

   SetFont('Times New Roman',8);

   MarginBottom := 0.5;

   PrintFooter('Page ' + IntToStr(CurrentPage),pjLeft);

   PrintFooter('Date 01/20/95',pjRight);

   MarginBottom := 1.0;

end; { with }

end;  { PrintFooterReport5 }

 

Example (C++Builder)

void __fastcall TReportForm:: PrintFooterReport5 (TObject *Sender)

{

TBaseReport* rp = dynamic_cast<TBaseReport*>(Sender);

rp1->SetFont("Times New Roman",8);

rp1->MarginBottom = 0.5;

rp1->PrintFooter("Page " + IntToStr(rp1->CurrentPage),pjLeft);

rp1->PrintFooter("Date 01/20/95",pjRight);

rp1->MarginBottom = 1.0;

}



You are reading help file online using chmlib.com

If you want your help file to be removed or added please send e-mail to chmlibcom@gmail.com