GetWindowRect

    GetWindowRect - Window의 위치및 크기 반환

    GetWindowRect함수는 화면상의 특정 Window에 대한 위치및 크기를 반환하는 함수입니다. Declare Function GetWindowRect Lib "user32" Alias "GetWindowRect" (ByVal hwnd As Integer, ByRef lpRect As RECT) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int GetWindowRect(int hwnd, ref RECT lpRect); - C# 선언 선언 GetWindowRect함수의 첫번째 인수는 위치및 크기를 얻고자 하는 Window의 Handle을 지정하고 두번째 인수에 실제 위치와 크기에 대한 값이 저장될 구조체를 지정합니다. 여기서 사..