Description
An enum of possible values for orientation.
C#
public enum Orientation { Horizontal = 0, Vertical = 1 }
Visual Basic
Public Enum Orientation Horizontal = 0 Vertical = 1 End Enum
Members
Members | Description |
---|---|
Horizontal = 0 | Control or layout should be horizontally oriented. |
Vertical = 1 | Control or layout should be vertically oriented. |