Contents Up Previous Next

wxPrinterDC

A printer device context is specific to Windows, and allows access to any printer with a Windows driver. See wxDC for further information on device contexts, and wxDC::GetSize for advice on achieving the correct scaling for the page.

Derived from

wxDC
wxObject

Include files

<wx/dcprint.h>

See also

wxDC, Printing framework overview

Members

wxPrinterDC::wxPrinterDC


wxPrinterDC::wxPrinterDC

wxPrinterDC(const wxPrintData& printData)

Pass a wxPrintData object with information necessary for setting up a suitable printer device context. This is the recommended way to construct a wxPrinterDC. Make sure you specify a reference to a wxPrintData object, not a pointer - you may not even get a warning if you pass a pointer instead.

wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, const bool interactive = true, int orientation = wxPORTRAIT)

Constructor. With empty strings for the first three arguments, the default printer dialog is displayed. device indicates the type of printer and output is an optional file for printing to. The driver parameter is currently unused. Use the Ok member to test whether the constructor was successful in creating a usable device context.

This constructor is deprecated and retained only for backward compatibility.