Поделиться через


CPrintDialog::PrintCollate

Определяет, является ли разбирается по копиям копии.

BOOL PrintCollate( ) const;

Возвращаемое значение

Ненулевой если пользователь устанавливает флажок collate в диалоговом окне; в противном случае – значение 0.

Заметки

Эта функция вызывается после вызова DoModal, чтобы определить, должен ли принтер collate все напечатанные копии документа.

Пример

// Display the Windows Print dialog box with Collate check box checked.
CPrintDialog dlg(FALSE, PD_ALLPAGES | PD_COLLATE | PD_NOPAGENUMS | 
   PD_HIDEPRINTTOFILE);
if (dlg.DoModal() == IDOK)
{
   // If the collate check box is selected, then GetCopies() will return 
   // the number of copies printed. Otherwise, GetCopies() always  
   // returns 1. Then, the number of copies printed can be found from the 
   // DEVMODE structure of the printing device. 
   if (dlg.PrintCollate())
   {
      int num = dlg.GetCopies();
      TRACE(_T("Number of copies printed = %d\n"), num);
   }
   else
   {
      LPDEVMODE devmode = dlg.GetDevMode();
      TRACE(_T("Number of copies printed = %d\n"), devmode->dmCopies);
   }
}

Требования

Header: afxdlgs.h

См. также

Ссылки

Класс CPrintDialog

Диаграмма иерархии

CPrintDialog::GetCopies