| 495 | } |
| 496 | |
| 497 | void PrintLeftJustifiedText() const |
| 498 | { |
| 499 | for (const auto& line : this->Lines) |
| 500 | { |
| 501 | HPDF_Page_ShowText(this->Page, line.String.c_str()); |
| 502 | HPDF_Page_MoveToNextLine(this->Page); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | void PrintCenterJustifiedText() const |
| 507 | { |
no test coverage detected