| property ColumnEnd: double; |
| This property will return the horizontal ending position of the current column. This can be useful for printing memo buffers inside of a column. |
| MemoBuf.PrintStart := ColumnStart; |
| MemoBuf.PrintEnd := ColumnEnd; |
| PrintMemo(MemoBuf, ColumnLinesLeft, false); |
| MemoBuf->PrintStart = rp1->ColumnStart; |
| MemoBuf->PrintEnd = rp1->ColumnEnd; |
| rp1->PrintMemo(MemoBuf, rp1->ColumnLinesLeft(), false);
|
|