[]
Specifies the text orientation for tick-mark labels.
This enum defines whether text is displayed upward, downward, vertically, horizontally, or with the orientation determined by Excel. It is used by APIs such as Orientation to control the displayed text direction.
public enum TickLabelOrientation
Public Enum TickLabelOrientation
IButton button = worksheet.Controls.AddButton(50, 100, 120, 40);
button.Text = "Submit";
button.Orientation = TickLabelOrientation.OrientationVertical;
| Name | Description |
|---|---|
| OrientationAutomatic | Specifies that the text orientation is set by Excel. |
| OrientationDownward | Specifies that the text is oriented down. |
| OrientationHorizontal | Specifies that the characters are horizontal. |
| OrientationUpward | Specifies that the text is oriented upward. |
| OrientationVertical | Specifies that the characters are vertical. |