728x90
SetCursorPos함수는 Mouse Cursor를 지정한 영역으로 이동시킵니다.
Declare Function SetCursorPos Lib "user32" Alias "SetCursorPos" (ByVal x As Integer, ByVal y As Integer) As Integer
▶VB.NET 선언
SetCursorPos(x, y)
▶VB.NET 호출
[DllImport("user32.dll")]
public static extern int SetCursorPos(int x, int y);
▶C# 선언
SetCursorPos(x, y);
▶C# 호출
SetCursorPos함수사용시 x와 y에 정수형으로 위치를 지정하면 Mouse Cursor가 해당 위치로 이동하게 됩니다.
이 함수는 ClipCursor함수로 인해 Mouse Cursor의 움직임이 제한된 상태에서도 적용이 가능합니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
GetClipCursor - ClipCursor를 통한 제한영역 표시 (0) | 2019.08.09 |
---|---|
SetCursor - 현재 Mouse Cursor의 변경 (0) | 2019.08.09 |
GetCapture - Mouse Event입력 Handle반환 (0) | 2019.08.09 |
GetDoubleClickTime - Mouse Double Click Timming (0) | 2019.08.09 |
mouse_event - Mouse Event 발생 (0) | 2019.08.09 |