CRichEditView::SetPaperSize
Llame a esta función para establecer el tamaño del papel para imprimir esta vista completa de la edición.
void SetPaperSize(
CSize sizePaper
);
Parámetros
- sizePaper
Los nuevos valores de tamaño del papel para imprimir, medidos en MM_TWIPS.
Comentarios
Si m_nWordWrap es WrapToTargetDevice, debe llamar a WrapChanged después de utilizar esta función para incluir características de impresión.
Ejemplo
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
encabezado: afxrich.h