Description
This class provides an enum of possible values for a dockable window's orientation.
Visual Basic
Public Enum DockableWindowOrient bottom = 3 floating = 1 ignore = 6 left = 4 right = 5 top = 2 End Enum
C#
public enum DockableWindowOrient { bottom = 3, floating = 1, ignore = 6, left = 4, right = 5, top = 2 }
Members
Members | Description |
---|---|
bottom = 3 | The window is oriented at the bottom. |
floating = 1 | The window is oriented as floating. |
ignore = 6 | The window orientation is ignored. |
left = 4 | The window is oriented to the left. |
right = 5 | The window is oriented to the right. |
top = 2 | The window is oriented at the top. |