namespace Terminal.Gui; /// Text direction enumeration, controls how text is displayed. /// /// 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
///
public enum TextDirection { /// Normal horizontal direction. HELLO
WORLD
LeftRight_TopBottom, /// Normal vertical direction. H W
E O
L R
L L
O D
TopBottom_LeftRight, /// This is a horizontal direction.
RTL OLLEH
DLROW
RightLeft_TopBottom, /// This is a vertical direction. W H
O E
R L
L L
D O
TopBottom_RightLeft, /// This is a horizontal direction. WORLD
HELLO
LeftRight_BottomTop, /// This is a vertical direction. O D
L L
L R
E O
H W
BottomTop_LeftRight, /// This is a horizontal direction. DLROW
OLLEH
RightLeft_BottomTop, /// This is a vertical direction. D O
L L
R L
O E
W H
BottomTop_RightLeft }