WindowPosition
Namespace: Hex1b
Assembly: Hex1b.dll
Specifies how a window should be initially positioned within its container.
csharp
public enum WindowPositionFields
Absolute
Use explicit X, Y coordinates (specified separately).
Returns: WindowPosition
csharp
Absolute = 9BottomLeft
Position at the bottom-left corner.
Returns: WindowPosition
csharp
BottomLeft = 3BottomRight
Position at the bottom-right corner.
Returns: WindowPosition
csharp
BottomRight = 4Center
Center the window in the container. This is the default.
Returns: WindowPosition
csharp
Center = 0CenterBottom
Center horizontally, align to bottom.
Returns: WindowPosition
csharp
CenterBottom = 6CenterLeft
Center vertically, align to left.
Returns: WindowPosition
csharp
CenterLeft = 7CenterRight
Center vertically, align to right.
Returns: WindowPosition
csharp
CenterRight = 8CenterTop
Center horizontally, align to top.
Returns: WindowPosition
csharp
CenterTop = 5TopLeft
Position at the top-left corner.
Returns: WindowPosition
csharp
TopLeft = 1TopRight
Position at the top-right corner.
Returns: WindowPosition
csharp
TopRight = 2