You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. PrintMemo method |
Top Previous Next |
Declaration procedure PrintMemo(MemoBuf: TMemoBuf; Lines: longint; PrintTabs: Boolean);
Category
Description This method will print the memo buffer, MemoBuf, for the number of lines specified by Lines. If Lines is 0 then all lines in the memo buffer will be printed. If PrintTabs is true, then PrintMemo will print lines of empty tabs for each line that the memo buffer is printed on.
NOTE: If the entire memo buffer is not printed, the internal position of MemoBuf will be set to the last character that was printed. This will allow the memo buffer to be continued on another page.
See also TBaseReport Class, MemoLines, TMemoBuf
Example (Delphi) SetColumns(3,0.25); MemoBuf.PrintStart := ColumnStart; MemoBuf.PrintEnd := ColumnEnd; PrintMemo(MemoBuf, ColumnLinesLeft, false); ClearColumns;
Example (C++Builder) rp1->SetColumns(3,0.25); MemoBuf->PrintStart = rp1->ColumnStart; MemoBuf->PrintEnd := rp1->ColumnEnd; rp1->PrintLines(MemoBuf, rp1->ColumnLinesLeft, false); rp1->ClearColumns(); |
You are reading help file online using chmlib.com
|