MoveToEx Function
Declaration
Private Declare Function MoveToEx Lib "gdi32" Alias "MoveToEx" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long, lpPoint As POINTAPI) As Long
Description of Function
Sets the curent pen position for the speified DC.
Parameter Type / Description
hdc Long / Handle to DC to draw in.
x Long / Position for the x component.
y Long / Position for the y component.
lpPoint POINTAPI / Old pen position is returned into this structure.
Return Value
Long / Nonzero on success, Zero on failure
|