//获得打印页面宽度
int nHorzSize = pDC->GetDeviceCaps(HORZRES);
//获得打印页面高度
int nVertSize = pDC->GetDeviceCaps(VERTRES);
//获得物理页面宽度
int nWidth = pDC->GetDeviceCaps(PHYSICALWIDTH);
//获得物理页面高度
int nHeight = pDC->GetDeviceCaps(PHYSICALHEIGHT);
//获得左、右边距
int nOffsetX = pDC->GetDeviceCaps(PHYSICALOFFSETX);
//获得上、下边距
int nOffsetY= pDC->GetDeviceCaps(PHYSICALOFFSETY);