| function ColumnLinesLeft: integer; |
| This method returns the number of lines that can be printed above the current SectionBottom for the current column plus all lines that are in remaining columns. This count includes the current line. |
| while ColumnLinesLeft > 0 do begin |
| Println(IntToStr( LinesLeft) + '/' + |
| IntToStr(ColumnLinesLeft) + '/' + |
| IntToStr(LineNum) + '/' + |
| while (rp1->ColumnLinesLeft() > 0) { |
| rp1->PrintLn(IntToStr(rp1->LinesLeft()) + AnsiString("/") + |
| IntToStr( rp1->ColumnLinesLeft()) + |
| IntToStr( rp1->LineNum) + AnsiString("/") + |
| IntToStr( rp1->ColumnNum) ); |
|