CWinApp::CreatePrinterDC
BOOL CreatePrinterDC( CDC& dc );
Return Value
Nonzero if the printer device context is created successfully; otherwise 0.
Parameters
dc
A reference to a printer device context.
Remarks
Call this member function to create a printer device context (DC) from the selected printer. 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.
CWinApp Overview | Class Members | Hierarchy Chart
See Also CWinApp::SelectPrinter