Manipulations2D 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.
Represents the possible affine two-dimensional (2-D) manipulations.
This enumeration supports a bitwise combination of its member values.
public enum class Manipulations2D
[System.Flags]
public enum Manipulations2D
[<System.Flags>]
type Manipulations2D =
Public Enum Manipulations2D
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No manipulations. |
TranslateX | 1 | A translation in the x-axis. |
TranslateY | 2 | A translation in the y-axis. |
Translate | 3 | A translation in the x and/or y axes. |
Scale | 4 | A scale in both directions. |
Rotate | 8 | A rotation. |
All | 15 | All available manipulations. |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.