You are reading help file online using chmlib.com
|
Rave Reports Developer Reference IsNewPage property (read only) archived BEX only |
Top Previous Next |
Declaration property IsNewPage: Boolean;
Category
Components TDetailShell, TMasterShell, TReportShell
Description This property will be true immediately after a new page is generated and will remain true until after the first row is printed. This can be useful for determining if a title bar for a table needs to be printed.
See also
Example (Delphi) IF IsNewPage then begin ReprintTitleBar; end; { if } PrintNormalData;
Example (C++Builder) if (ReportShell->IsNewPage) { ReprintTitleBar(); }// if PrintNormalData(); |
You are reading help file online using chmlib.com
|