[]
Specifies whether a form control is displayed horizontally or vertically.
This enum is used to configure orientation-dependent form controls such as IScrollBar through Orientation.
public enum FormControlOrientation
Public Enum FormControlOrientation
IScrollBar scrollBar = worksheet.Controls.AddScrollBar(50, 30, 120, 20);
scrollBar.Orientation = FormControlOrientation.Vertical;
| Name | Description |
|---|---|
| Horizontal | Control or layout should be horizontally oriented. |
| Vertical | Control or layout should be vertically oriented. |