728x90
    
    
  SetDoubleClickTime함수는 Mouse를 Double Click하는 시간단위를 설정하도록 합니다.
Declare Function SetDoubleClickTime Lib "user32" Alias "SetDoubleClickTime" (ByVal wCount As Integer) As Integer▶VB.NET 선언
SetDoubleClickTime(t)▶VB.NET 호출
[DllImport("user32.dll")]
public static extern int ReleaseCapture();▶C# 선언
SetDoubleClickTime(t);▶C# 호출
함수의 인수로 건네지는 t는 약 1/1000 단위입니다.
SetDoubleClickTime함수는 실행에 실패할 경우 0을 반환합니다.
728x90
    
    
  '.NET > Windows API for .NET' 카테고리의 다른 글
| GetDoubleClickTime - Mouse Double Click Timming (0) | 2019.08.09 | 
|---|---|
| mouse_event - Mouse Event 발생 (0) | 2019.08.09 | 
| GetCursor - 현재 Mouse Cursor의 Handle값 획득 (0) | 2019.08.09 | 
| FindWindow - 현재 열려진 윈도우 찾기 (2) | 2019.08.09 | 
| PostMessage, SendMessage - 특정 윈도우(Windows)에 메세지(Message)처리하기 (0) | 2019.08.09 |