You are reading help file online using chmlib.com
|
TBaseReport. LinesLeft method |
Top Previous Next |
Declaration function LinesLeft: integer;
Category
Description This method will return the number of lines that can be printed above the current SectionBottom including the current line.
See also TBaseReport Class, ColumnLinesLeft, SectionBottom
Example (Delphi) if RvNDRWriter1.LinesLeft < 3 then begin RvNDRWriter1.NewPage; end; { if }
Example (C++Builder) if (RvNDRWriter1->LinesLeft() < 3) { RvNDRWriter1->NewPage(); }/ if |
You are reading help file online using chmlib.com
|