Enum InteriorScrollActivity.ScrollMethodKind
Specifies the available methods for performing scroll actions in response to user input.
public enum InteriorScrollActivity.ScrollMethodKind
Fields
DeltaWhilePressed = 2Scrolling is performed using the difference between the most recent pointer-down position (mouse click or touch) and the current pointer position.
None = 0No scrolling is performed.
RepeatWhilePressed = 1Scrolling is performed repeatedly while left mouse button or finger is pressed. Direction depends on the position of the pointer from the initial touch point.
Remarks
Use this enumeration to select how scrolling behavior is triggered in controls that support user-driven scrolling. The selected method determines whether scrolling occurs automatically or only in response to specific user actions.