GetWindowWord
VB声明
Declare Function GetWindowWord Lib "user32" Alias "GetWindowWord" (ByVal hwnd As Long, ByVal nIndex As Long) As Integer
说明
获得指定窗口结构的信息
返回值
Long,由nIndex决定
参数表
参数 类型及说明
hwnd Long,想获取信息的那个窗口的句柄
nIndex Long,正偏移值,指出在窗口额外字节分配的空间中取得的信息

Top