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 public enum CanvasTextDirection
Members
| Member name | Value | Description |
---|
| LeftToRightThenTopToBottom | 0 | Text is read from left to right and lines flow from top to bottom. |
| RightToLeftThenTopToBottom | 1 | Text is read from right to left and lines flow from top to bottom. |
| LeftToRightThenBottomToTop | 2 | Text is read from left to right and lines flow from bottom to top. |
| RightToLeftThenBottomToTop | 3 | Text is read from right to left and lines flow from bottom to top. |
| TopToBottomThenLeftToRight | 4 | Text is read from top to bottom and lines flow from left to right. |
| BottomToTopThenLeftToRight | 5 | Text is read from bottom to top and lines flow from left to right. |
| TopToBottomThenRightToLeft | 6 | Text is read from top to bottom and lines flow from right to left. |
| BottomToTopThenRightToLeft | 7 | Text is read from bottom to top and lines flow from right to left. |
See Also