ClipCursor

    ClipCursor - Mouse의 이동영역 제한

    ClipCursor 함수는 Mouse Cursor를 움직일 수 있는 영역을 제한하는 함수 입니다. Declare Function ClipCursor Lib "user32" Alias "ClipCursor" (ByRef lpRect As Rectangle) As Integer - VB.NET 선언 Dim m_point As Rectangle = New Rectangle(Left, Top, Width, Height) ClipCursor(m_point) - VB.NET 호출 [DllImport("user32.dll")] public static extern int ClipCursor(ref Rectangle lpRect); - C# 선언 Rectangle m_point = new Rectangle(Left, ..