CWinApp::CreatePrinterDC

Call this member function to create a printer device context (DC) from the selected printer.

BOOL CreatePrinterDC( 
   CDC& dc  
);

Parameters

  • dc
    A reference to a printer device context.

Return Value

Nonzero if the printer device context is created successfully; otherwise 0.

Remarks

CreatePrinterDC initializes the device context that you pass in by reference, so you can use it to print.

If the function is successful, when you have finished printing, you must destroy the device context. You can let the destructor of the CDC object do it, or you can do it explicitly by calling CDC::DeleteDC.

Requirements

Header: afxwin.h

See Also

Reference

CWinApp Class

Hierarchy Chart

CWinApp::SelectPrinter

Other Resources

CWinApp Members