GetWindowText

    GetWindowText - 특정 Window의 제목 문자열 확인

    GetWindowText함수는 지정한 Window의 제목을 반환하는 함수입니다. Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Integer, ByVal lpString As String, ByVal cch As Integer) As Integer ▶VB.NET 선언 [DllImport("user32")] public static extern int GetWindowText(int hwnd, StringBuilder lpString, int cch); ▶C# 선언 GetWindowText함수의 첫번째 인수는 제목을 확인하고자 하는 Window의 Handle을 기술하고 두번째 인수에서 실제 제목을 저장할 변..