PanningMode 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 ScrollViewer reacts to touch manipulation.
public enum class PanningMode
public enum PanningMode
type PanningMode =
Public Enum PanningMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The ScrollViewer does not respond to touch input. |
HorizontalOnly | 1 | The ScrollViewer scrolls horizontally only. |
VerticalOnly | 2 | The ScrollViewer scrolls vertically only. |
Both | 3 | The ScrollViewer scrolls horizontally and vertically. |
HorizontalFirst | 4 | The ScrollViewer scrolls when the user moves a finger horizontally first. If the user moves the vertically first, the movement is treated as mouse events. After the ScrollViewer begins to scroll, it will scroll horizontally and vertically. |
VerticalFirst | 5 | The ScrollViewer scrolls when the user moves a finger vertically first. If the user moves the horizontally first, the movement is treated as mouse events. After the ScrollViewer begins to scroll, it will scroll horizontally and vertically. |
Remarks
The ScrollViewer will scroll when a user drags a finger on the control on a touch device that supports Windows Touch. The PanningMode property specifies whether the ScrollViewer scroll horizontally, vertically, or both.