New to Telerik Document ProcessingStart a free 30-day trial

Specifies the direction text flows within a TableCell, controlling both horizontal and vertical text orientation.

Definition

Namespace:Telerik.Windows.Documents.Flow.Model.Styles

Assembly:Telerik.Windows.Documents.Flow.dll

Syntax:

C#
public enum TextDirection

Fields

Text flows bottom-to-top vertically, then left-to-right horizontally.

C#
BottomToTopLeftToRight = 1

Text flows left-to-right horizontally, then top-to-bottom vertically (standard Western layout).

C#
LeftToRightTopToBottom = 0

Text flows left-to-right horizontally, then top-to-bottom vertically, with 270-degree rotation applied.

C#
LeftToRightTopToBottomRotated = 3

Text flows top-to-bottom vertically, then left-to-right horizontally, with 270-degree rotation applied.

C#
TopToBottomLeftToRightRotated = 4

Text flows top-to-bottom vertically, then right-to-left horizontally.

C#
TopToBottomRightToLeft = 2

Text flows top-to-bottom vertically, then right-to-left horizontally, with 270-degree rotation applied.

C#
TopToBottomRightToLeftRotated = 5