CXCtrlMan ctrlman = m_Map.GetCtrlMan();
CXControlState ctrlstate = ctrlman.GetControlState();
CXSize dpsize = ctrlstate.GetSizeDP();
long SetCxSz = 110;
dpsize.SetCX(SetCxSz);
long width_px = dpsize.GetCX();
CString msg;
msg.Format(_T("width_px : [%lu]"), width_px);
AfxMessageBox(msg);