Compartilhar via


CRichEditView::SetPaperSize

Chamar essa função para definir o tamanho de papel para imprimir esta rica o modo de edição.

void SetPaperSize( 
   CSize sizePaper  
);

Parâmetros

  • sizePaper
    Os novos valores de tamanho de papel para imprimir, medidos em MM_TWIPS.

Comentários

Se m_nWordWrap é WrapToTargetDevice, você deve chamar WrapChanged após usado essa função para ajustar características de impressão.

Exemplo

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);
}

Requisitos

Cabeçalho: afxrich.h

Consulte também

Referência

Classe CRichEditView

Gráfico da hierarquia

CRichEditView::GetPaperSize

CRichEditView::GetMargins

CRichEditView::GetPrintWidth

CRichEditView::GetPrintRect

CRichEditView::GetPageRect

CRichEditView::PrintPage

CRichEditView::WrapChanged