GetClipCursor

    GetClipCursor - ClipCursor를 통한 제한영역 표시

    Mouse를 움직일 수 있는 영역을 제한하는 함수로 ClipCursor함수가 있습니다. [Windows API for .NET] - ClipCursor - Mouse의 움직임영역 제한 이 함수는 ClipCursor함수로 설정된 영역에 대한 값을 반환합니다. Declare Function GetClipCursor Lib "user32" Alias "GetClipCursor" (ByRef lprc As RECT) As Integer ▶VB.NET 선언 Public Structure RECT Public left As Integer Public top As Integer Public right As Integer Public bottom As Integer End Structure Dim m_point As ..