=head2 OnPrintPage wxPrintout::OnPrintPage bool OnPrintPage(int pageNum) Called by the framework when a page should be printed. Returning false cancels the print job. The application can use wxPrintout::GetDC to obtain a device context to draw on. =cut sub OnPrintPage { my( $this, $page ) = @_; my $dc = $this->GetDC(); # ... ToDo } # /OnPrintPage 1;