Desktop Functions: Smart Device Functions:
|
Search Results for "getwindowinfo" in [All]user32
private static extern bool GetWindowInfo(IntPtr hwnd, ref WINDOWINFO pwi);
Public Declare Auto Function GetWindowInfo Lib "user32" _
Public Shared Function GetWindowInfo(ByVal hwnd As IntPtr, ByRef pwi As WINDOWINFO) As Boolean You must assign the cbSize parameter prior to calling GetWindowInfo(). For example:
GetWindowInfo(Handle, ref info);
GetWindowInfo(Handle, info) |