Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CWnd::OnMove
CWnd                                        Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  afx_msg void OnMove( int  x, int  y  );
 
  Parameter   Description
 
  <x>         Specifies the new x-coordinate location of the upper-left
              corner of the client area. This new location is given in
              screen coordinates for overlapped and pop-up windows, and
              parent-client coordinates for child windows.
 
  <y>         Specifies the new y-coordinate location of the upper-left
              corner of the client area. This new location is given in
              screen coordinates for overlapped and pop-up windows, and
              parent-client coordinates for child windows.
 
  Remarks
 
  Called after CWnd has been moved.
 
  This message-handler member function calls the Default member
  function. Override this member function in your derived class to handle
  the WM_MOVE message.
 
  See Also
 
  CWnd::Default, WM_MOVE
 
 
                                     -♦-