CXCtrlMan ctrlman = m_Map.GetCtrlMan();
CXControlState ctrlstate = ctrlman.GetControlState();
CXSize dpsize = ctrlstate.GetSizeDP();
long width_px = dpsize.get__CY()/2 - 250;
long SetCySz = 220;
dpsize.SetCY(SetCySz);
long height_px = dpsize.GetCY();
CString msg;
msg.Format(_T("height_px : [%lu]"), height_px);
AfxMessageBox(msg);