선언:

C#

[DllImport("user32")]
public static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);


VB.NET

<DllImport("user32")> _
Public Shared Function GetWindowText(hWnd As IntPtr, lpString As StringBuilder, nMaxCount As IntegerAs Integer
End Function




사용 예제:

C#

using System;
using System.Text;
using System.Runtime.InteropServices;

namespace ApiReference {
    class ApiExample {

        [DllImport("user32")]
        public static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
        [DllImport("user32")]
        public static extern Int32 GetCursorPos(out POINT pt);
        [DllImport("user32")]
        public static extern IntPtr WindowFromPoint(POINT pt);
        
        public struct POINT {
            public Int32 x;
            public Int32 y;
        }
        
        public static void Main(string[] args) {
            POINT pt;
            GetCursorPos(out pt);
            
            IntPtr hWnd = WindowFromPoint(pt);
            Console.WriteLine("{0}, {1} 위치에 있는 윈도우 핸들: {2:X8}", pt.x, pt.y, hWnd.ToInt32());
            if ( hWnd != IntPtr.Zero ) {
                StringBuilder sbWinText = new StringBuilder(260);
                GetWindowText(hWnd, sbWinText, 260);
                Console.WriteLine("윈도우 창의 제목: {0}", sbWinText.ToString());
            }
            
            Console.ReadKey(true);
        }
    }
}


VB.NET

Imports System
Imports System.Text
Imports System.Runtime.InteropServices

Namespace ApiReference
    Class ApiExample

        <DllImport("user32")> _
        Public Shared Function GetWindowText(hWnd As IntPtr, lpString As StringBuilder, nMaxCount As IntegerAs Integer
        End Function
        <DllImport("user32")> _
        Public Shared Function GetCursorPos(ByRef pt As POINT) As Int32
        End Function
        <DllImport("user32")> _
        Public Shared Function WindowFromPoint(pt As POINT) As IntPtr
        End Function

        Public Structure POINT
            Public x As Int32
            Public y As Int32
        End Structure

        Public Shared Sub Main(args As String())
            Dim pt As POINT
            GetCursorPos(pt)

            Dim hWnd As IntPtr = WindowFromPoint(pt)
            Console.WriteLine("{0}, {1} 위치에 있는 윈도우 핸들: {2:X8}", pt.x, pt.y, hWnd.ToInt32())
            If hWnd <> IntPtr.Zero Then
                Dim sbWinText As New StringBuilder(260)
                GetWindowText(hWnd, sbWinText, 260)
                Console.WriteLine("윈도우 창의 제목: {0}", sbWinText.ToString())
            End If

            Console.ReadKey(True)
        End Sub
    End Class
End Namespace




예제 실행 결과:




매개 변수 설명:

hWnd - 윈도우 창의 제목을 가져올 윈도우 핸들을 입력합니다.

lpString - 윈도우 창의 제목이 저장될 버퍼를 입력합니다.

nMaxCount - 버퍼의 크기를 입력합니다.




API 설명:

윈도우 창의 제목을 가져옵니다.




참고:

GetWindowText (MSDN)




비고:

GetWindowText 메서드를 사용할 때 버퍼(문자열)의 크기를 낭비없이 정확하게 맞추려는 경우에는, GetWindowTextLength API를 사용하여 윈도우 창 제목의 길이를 가져온 후에 GetWindowText API를 사용하면 됩니다.



'API Reference' 카테고리의 다른 글

23. SetWindowText  (0) 2014.10.06
22. GetWindowTextLength  (0) 2014.10.04
20. DebugActiveProcess  (0) 2014.10.03
19. LoadLibrary  (0) 2014.10.01
18. GetModuleHandle  (0) 2014.09.30

+ Recent posts