CPrintDialog::CreatePrinterDC
DEVMODE と DEVNAMES の構造から (DC) のプリンター デバイス コンテキストを作成します。
HDC CreatePrinterDC( );
戻り値
新しく作成したプリンターのデバイス コンテキストへのハンドル。
解説
この DC は、現在のプリンター DC) と仮定し、他の前に DCs がユーザーによって削除する必要があるプリンターを書き込みます。この関数は、が呼び出される印刷ダイアログ ボックスを表示せずに、使用できる結果の 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);
}
必要条件
ヘッダー : afxdlgs.h