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

SizingWindowSide (Enums)
 
.

SizingWindowSide Enumeration

Summary

This enumeration specifies what side of a form is being resized when the WM_SIZING notification when it is sent to a window.

C# Definition:

/// <summary>When resizing a window, this is the side of the window being resized.</summary>
protected enum SizingWindowSide : uint
{
    /// <summary>WMSZ_LEFT: Left edge</summary>
    Left = 1,
    /// <summary>WMSZ_RIGHT: Right edge</summary>
    Right = 2,
    /// <summary>WMSZ_TOP: Top edge</summary>
    Top = 3,
    /// <summary>WMSZ_TOPLEFT: Top-left corner</summary>
    TopLeft = 4,
    /// <summary>WMSZ_TOPRIGHT: Top-right corner</summary>
    TopRight = 5,
    /// <summary>WMSZ_BOTTOM: Bottom edge</summary>
    Bottom = 6,
    /// <summary>WMSZ_BOTTOMLEFT: Bottom-left corner</summary>
    BottomLeft = 7,
    /// <summary>WMSZ_BOTTOMRIGHT: Bottom-right corner</summary>
    BottomRight = 8,
}

VB Definition:

Enum SizingWindowSide
   ''' <summary>WMSZ_LEFT: Left edge</summary>
   Left = 1
   ''' <summary>WMSZ_RIGHT: Right edge</summary>
   Right = 2
   ''' <summary>WMSZ_TOP: Top edge</summary>
   Top = 3
   ''' <summary>WMSZ_TOPLEFT: Top-left corner</summary>
   TopLeft = 4
   ''' <summary>WMSZ_TOPRIGHT: Top-right corner</summary>
   TopRight = 5
   ''' <summary>WMSZ_BOTTOM: Bottom edge</summary>
   Bottom = 6
   ''' <summary>WMSZ_BOTTOMLEFT: Bottom-left corner</summary>
   BottomLeft = 7
   ''' <summary>WMSZ_BOTTOMRIGHT: Bottom-right corner</summary>
   BottomRight = 8
End Enum

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

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

Select "Edit This Page" on the right hand toolbar and edit it!

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