CDC::MoveTo

将当前位置移动到 xy 指定的点(或 point)。

CPoint MoveTo(
   int x,
   int y 
);
CPoint MoveTo(
   POINT point 
);

参数

  • x
    指定新位置的逻辑x坐标。

  • y
    指定新位置的逻辑y坐标。

  • point
    指定新位置。 您可以通过一 POINT 结构或一 CPoint 对象此参数的。

返回值

以前的x和y坐标为 CPoint 对象。

示例

CRect::CenterPoint参见示例。

要求

Header: afxwin.h

请参见

参考

CDC 类

层次结构图

CDC::GetCurrentPosition

CDC::LineTo

CPoint选件类

POINT 结构