선언:

C#

[DllImport("user32")]
public static extern int GetWindowTextLength(IntPtr hWnd);


VB.NET

<DllImport("user32")> _
Public Shared Function GetWindowTextLength(hWnd As IntPtr) As Integer




사용 예제:

C#

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

namespace ApiReference {
    class ApiExample {

        [DllImport("user32")]
        public static extern int GetWindowTextLength(IntPtr hWnd);
        [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 ) {
                Int32 wndTextLength = GetWindowTextLength(hWnd);
                Console.WriteLine("윈도우 창 제목의 길이: {0}", wndTextLength);
            }
            
            Console.ReadKey(true);
        }
    }
}


VB.NET

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

Namespace ApiReference
    Class ApiExample

        <DllImport("user32")> _
        Public Shared Function GetWindowTextLength(hWnd As IntPtr) As 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 wndTextLength As Int32 = GetWindowTextLength(hWnd)
                Console.WriteLine("윈도우 창 제목의 길이: {0}", wndTextLength)
            End If

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




예제 실행 결과:




매개 변수 설명:

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




API 설명:

윈도우 창 제목의 길이를 가져옵니다.




참고:

GetWindowTextLength (MSDN)




비고:

이 API를 사용하여 윈도우 창 제목의 길이를 가져온 후에 적당한 크기의 버퍼를 할당하고, GetWindowText API를 사용하여 윈도우 창의 제목을 가져오면 메모리 낭비를 줄일 수 있습니다.




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

24. DebugActiveProcessStop  (0) 2014.10.06
23. SetWindowText  (0) 2014.10.06
21. GetWindowText  (0) 2014.10.04
20. DebugActiveProcess  (0) 2014.10.03
19. LoadLibrary  (0) 2014.10.01

+ Recent posts