Click or drag to resize
CanvasTextDirection Enumeration
Specifies the direction in which text is formatted and read.

Namespace:  Microsoft.Graphics.Canvas.Text
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasTextDirection
Members
  Member nameValueDescription
LeftToRightThenTopToBottom0Text is read from left to right and lines flow from top to bottom.
RightToLeftThenTopToBottom1Text is read from right to left and lines flow from top to bottom.
LeftToRightThenBottomToTop2Text is read from left to right and lines flow from bottom to top.
RightToLeftThenBottomToTop3Text is read from right to left and lines flow from bottom to top.
TopToBottomThenLeftToRight4Text is read from top to bottom and lines flow from left to right.
BottomToTopThenLeftToRight5Text is read from bottom to top and lines flow from left to right.
TopToBottomThenRightToLeft6Text is read from top to bottom and lines flow from right to left.
BottomToTopThenRightToLeft7Text is read from bottom to top and lines flow from right to left.
See Also