.. include:: headings.inc .. _PrinterDC: ========================================================================================================================================== |phoenix_title| **PrinterDC** ========================================================================================================================================== A printer device context is specific to MSW and Mac, and allows access to any printer with a Windows or Macintosh driver. See :ref:`DC` for further information on device contexts, and :meth:`DC.GetSize` for advice on achieving the correct scaling for the page. .. seealso:: :ref:`Printing Framework Overview `, :ref:`DC` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **PrinterDC** .. raw:: html

Inheritance diagram of PrinterDC

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~PrinterDC.__init__` Constructor. :meth:`~PrinterDC.GetPaperRect` Return the rectangle in device coordinates that corresponds to the full paper area, including the nonprinting regions of the paper. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~PrinterDC.PaperRect` See :meth:`~PrinterDC.GetPaperRect` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: PrinterDC(DC) A printer device context is specific to MSW and Mac, and allows access to any printer with a Windows or Macintosh driver. **Possible constructors**:: PrinterDC(printData) .. method:: __init__(self, printData) Constructor. Pass a :ref:`PrintData` object with information necessary for setting up a suitable printer device context. This is the recommended way to construct a :ref:`PrinterDC`. Make sure you specify a reference to a :ref:`PrintData` object, not a pointer - you may not even get a warning if you pass a pointer instead. :param `printData`: :type `printData`: PrintData .. method:: GetPaperRect(self) Return the rectangle in device coordinates that corresponds to the full paper area, including the nonprinting regions of the paper. The point (0,0) in device coordinates is the top left corner of the page rectangle, which is the printable area on MSW and Mac. The coordinates of the top left corner of the paper rectangle will therefore have small negative values, while the bottom right coordinates will be somewhat larger than the values returned by :meth:`DC.GetSize` . :rtype: :ref:`Rect` .. attribute:: PaperRect See :meth:`~PrinterDC.GetPaperRect`