ManipulationModes 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.
Specifies how manipulation events are interpreted.
This enumeration supports a bitwise combination of its member values.
public enum class ManipulationModes
[System.Flags]
public enum ManipulationModes
[<System.Flags>]
type ManipulationModes =
Public Enum ManipulationModes
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Manipulation events do not occur. |
TranslateX | 1 | A manipulation can translate an object horizontally. |
TranslateY | 2 | A manipulation can translate an object vertically. |
Translate | 3 | A manipulation can translate an object. |
Rotate | 4 | A manipulation can rotate an object. |
Scale | 8 | A manipulation can scale an object. |
All | 15 | A manipulation can scale, translate, or rotate an object and can occur with one point of input. |