Enum TextDirection
Text direction enumeration, controls how text is displayed.
public enum TextDirection
Fields
BottomTop_LeftRight = 5
This is a vertical direction.
O DL LL RE OH W
BottomTop_RightLeft = 7
This is a vertical direction.
D OL LR LO EW H
LeftRight_BottomTop = 4
This is a horizontal direction.
WORLDHELLO
LeftRight_TopBottom = 0
Normal horizontal direction.
HELLOWORLD
RightLeft_BottomTop = 6
This is a horizontal direction.
DLROWOLLEH
RightLeft_TopBottom = 2
This is a horizontal direction.
RTLOLLEHDLROW
TopBottom_LeftRight = 1
Normal vertical direction.
H WE OL RL LO D
TopBottom_RightLeft = 3
This is a vertical direction.
W HO ER LL LD O
Remarks
TextDirection [H] = Horizontal [V] = Vertical
TextDirection | Description |
---|---|
LeftRight_TopBottom [H] | Normal |
TopBottom_LeftRight [V] | Normal |
RightLeft_TopBottom [H] | Invert Text |
TopBottom_RightLeft [V] | Invert Lines |
LeftRight_BottomTop [H] | Invert Lines |
BottomTop_LeftRight [V] | Invert Text |
RightLeft_BottomTop [H] | Invert Text + Invert Lines |
BottomTop_RightLeft [V] | Invert Text + Invert Lines |