Udostępnij za pośrednictwem


CRichEditView::SetPaperSize

Wywołanie tej funkcji, aby ustawić rozmiar papieru do drukowania tego widoku edytowania tekstu sformatowanego.

void SetPaperSize(
   CSize sizePaper 
);

Parametry

  • sizePaper
    Nowe wartości rozmiar papieru do drukowania, mierzone w MM_TWIPS.

Uwagi

Jeśli m_nWordWrap jest WrapToTargetDevice, powinna wywołać WrapChanged po użyciu tej funkcji, aby dostosować właściwości drukowania.

Przykład

BOOL CMyRichEditView::OnPreparePrinting(CPrintInfo* pInfo)
{
   // Set the printing margins (720 twips = 1/2 inch).
   SetMargins(CRect(720, 720, 720, 720));

   // Change the paper orientation to landscape mode
   // See the example for CWinApp::GetPrinterDeviceDefaults
   ((CMyWinApp*)AfxGetApp())->SetLandscapeMode();

   // Change the paper size in the CRichEditView to 
   // reflect landscape mode
   CSize csPaper = GetPaperSize();
   int temp;
   temp = csPaper.cx; csPaper.cx = csPaper.cy; csPaper.cy = temp;
   SetPaperSize(csPaper);

   return DoPreparePrinting(pInfo);
}

Wymagania

Nagłówek: afxrich.h

Zobacz też

Informacje

Klasa CRichEditView

Wykres hierarchii

CRichEditView::GetPaperSize

CRichEditView::GetMargins

CRichEditView::GetPrintWidth

CRichEditView::GetPrintRect

CRichEditView::GetPageRect

CRichEditView::PrintPage

CRichEditView::WrapChanged