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