ManipulationModes 列舉
定義
指定如何解譯操作事件。Specifies how manipulation events are interpreted.
此列舉具有 FlagsAttribute 個屬性允許以位元方式合併其成員值。
public enum class ManipulationModes
[System.Flags]
public enum ManipulationModes
type ManipulationModes =
Public Enum ManipulationModes
- 繼承
- 屬性
欄位
All | 15 | 操作可以縮放、平移或旋轉物件,而且可以利用一個輸入點執行。A manipulation can scale, translate, or rotate an object and can occur with one point of input. |
None | 0 | 不發生操作事件。Manipulation events do not occur. |
Rotate | 4 | 操作可以旋轉物件。A manipulation can rotate an object. |
Scale | 8 | 操作可以縮放物件。A manipulation can scale an object. |
Translate | 3 | 操作可以平移物件。A manipulation can translate an object. |
TranslateX | 1 | 操作可以水平平移物件。A manipulation can translate an object horizontally. |
TranslateY | 2 | 操作可以垂直平移物件。A manipulation can translate an object vertically. |