728x90
GetCapture함수는 현재 Mouse를 통해 입력을 받고 있는 Control이나 Windows의 Handle을 반환합니다.
Declare Function GetCapture Lib "user32" Alias "GetCapture" () As Integer
▶VB.NET 선언
GetCapture()
▶VB.NET 호출
[DllImport("user32.dll")]
public static extern int GetCapture();
▶C# 선언
GetCapture();
▶C# 호출
GetCapture함수가 정상적으로 실행되면 해당 Handle을 반환하지만 그렇지 못한 경우에는 0을 반환합니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
SetCursor - 현재 Mouse Cursor의 변경 (0) | 2019.08.09 |
---|---|
SetCursorPos - Mouse Cursor의 이동 (0) | 2019.08.09 |
GetDoubleClickTime - Mouse Double Click Timming (0) | 2019.08.09 |
mouse_event - Mouse Event 발생 (0) | 2019.08.09 |
SetDoubleClickTime - Mouse Double Click 감지 시간 설정 (0) | 2019.08.09 |