共用方式為


CPrintDialog::CreatePrinterDC

若要從 DEVMODEDEVNAMES 結構的印表機內容 (DC)。

HDC CreatePrinterDC( );

傳回值

新建的印表機內容的控制代碼。

備註

此網域控制站 (DC) 假設為目前印表機 DC,,和任何其他先前已取得必須由使用者刪除 DC 的印表機。 這個函式,可以呼叫,而且產生的 DC,使用,而不顯示列印對話方塊。

範例

// Display the Windows Print dialog box with "All" radio button 
// initially selected. All other radio buttons are disabled.
CPrintDialog dlg(FALSE);
if (dlg.DoModal() == IDOK)
{
   // Create a printer device context (DC) based on the information
   // selected from the Print dialog.
   HDC hdc = dlg.CreatePrinterDC();
   ASSERT(hdc);
}

需求

Header: afxdlgs.h

請參閱

參考

CPrintDialog 類別

階層架構圖

CPrintDialog::GetDevMode