Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

WINDOWPLACEMENT (Structures)
 
.
Summary
The WINDOWPLACEMENT structure contains information about the placement of a window on the screen.

C# Definition:

cmdShow values:

private const int SW_RESTORE = 9;

[StructLayout(LayoutKind.Sequential)]
private struct WINDOWPLACEMENT
{
     public int length;
     public int flags;
     public int showCmd;
     public System.Drawing.Point ptMinPosition;
     public System.Drawing.Point ptMaxPosition;
     public System.Drawing.Rectangle rcNormalPosition;

     public static WINDOWPLACEMENT Default
     {
      get
      {
           WINDOWPLACEMENT result = new WINDOWPLACEMENT();
           result.length = Marshal.SizeOf( result );
           return result;
      }
     }    
}

VB Definition:

<StructLayout(LayoutKind.Sequential)> _
Private Structure WINDOWPLACEMENT
     Public length As Integer
     Public flags As Integer
     Public showCmd As Integer
     Public minPosition As System.Drawing.Point
     Public maxPosition As System.Drawing.Point
     Public normalPosition As System.Drawing.Rectangle
End Structure

Notes:

Use with GetWindowPlacement and SetWindowPlacement

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions