Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
SizingWindowSide (Enums)
.
Summary
Enumeration for supporting the wParam parameter included with the WM_SIZING notification. Check with
WindowsMessages for more details.
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
protected 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,
}
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
TODO
End Enum
Notes:
None.
Documentation
None
- this was custom-bulit to support the WM_SIZING notification. You may check at
WM_SIZING for more information.
Enumeration for supporting the wParam parameter included with the WM_SIZING notification. Check with WindowsMessages for more details.
1/13/2008 2:31:03 AM - dj_elektrona@abv.bg-84.238.190.222
C# and VB enums of many of the Windows Messages.
10/6/2021 1:56:47 PM - thediscover22450@gmail.com-86.253.38.65
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!