GetWindowInfo (user32)
Last changed: -108.219.86.91

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern bool GetWindowInfo(IntPtr hwnd, ref WINDOWINFO pwi);

User-Defined Types:

None.

Notes:

You must assign the cbSize parameter prior to calling GetWindowInfo(). For example:

    WINDOWINFO info = new WINDOWINFO();
    info.cbSize = (uint)Marshal.SizeOf(info);
    GetWindowInfo(Handle, ref info);

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation