CRichEditView::SetPaperSize
telefonar Esta função para conjunto o dimensionar do papel para imprimir este modo de exibição de edição rica.
void SetPaperSize(
CSize sizePaper
);
Parâmetros
- sizePaper
Os novos valores de dimensionar de papel para impressão, medida em MM_TWIPS.
Comentários
If m_nWordWrap is WrapToTargetDevice, você deve telefonar WrapChanged após usar essa função para ajustar as 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