InvertAxes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicate the inversion of horizontal and vertical axes of the drawing surface.
This enumeration supports a bitwise combination of its member values.
public enum class InvertAxes
[System.Flags]
public enum InvertAxes
[<System.Flags>]
type InvertAxes =
Public Enum InvertAxes
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Drawing surface is not inverted in either axis. |
Horizontal | 1 | Drawing surface is inverted in the horizontal axis. |
Vertical | 2 | Drawing surface is inverted in the vertical axis. |
Both | 3 | Drawing surface is inverted in both axes. |
Remarks
Text formatter clients usually invert the horizontal axis, or X-axis, of the drawing surface when performing right-to-left layout of text content.
In a less common case, a text formatter client may invert the vertical axis, or Y-axis, of the drawing surface to achieve the effect of having the coordinate origin at the bottom-left position of the screen. This is a useful technique when drawing certain types of graphs.