.
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.
Enumeration for supporting the wParam parameter included with the WM_SIZING notification. Check with WindowsMessages for more details.
1/13/2008 9:31:03 AM - -24.16.20.127
C# and VB enums of many of the Windows Messages.
9/9/2010 11:08:33 PM - jnm2-74.212.46.188
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!
