Enum ScrollEventType
Specifies the type of Scroll event that occurred.
Namespace: System.Windows.Controls.Primitives
Assembly: OpenSilver.dll
Syntax
public enum ScrollEventType
Fields
| Name | Description |
|---|---|
| EndScroll | Specifies that the Thumb was dragged to a new position and is now no longer being dragged by the user. |
| First | Specifies that the Thumb moved to the Minimum position of the ScrollBar. |
| LargeDecrement | Specifies that the Thumb moved a specified distance, as determined by the value of LargeChange. The Thumb moved to the left for a horizontal ScrollBar or upward for a vertical ScrollBar. |
| LargeIncrement | Specifies that the Thumb moved a specified distance, as determined by the value of LargeChange. The Thumb moved to the right for a horizontal ScrollBar or downward for a vertical ScrollBar. |
| Last | Specifies that the Thumb moved to the Minimum position of the ScrollBar. |
| SmallDecrement | Specifies that the Thumb moved a specified distance, as determined by the value of SmallChange. The Thumb moved to the left for a horizontal ScrollBar or upward for a vertical ScrollBar. |
| SmallIncrement | Specifies that the Thumb moved a specified distance, as determined by the value of SmallChange. The Thumb moved to the right for a horizontal ScrollBar or downward for a vertical ScrollBar. |
| ThumbPosition | Specifies that the Thumb moved to a new position because the user selected Scroll Here in the shortcut menu of the ScrollBar. |
| ThumbTrack | The Thumb was dragged and caused a PointerMoved event. A Scroll event of this ScrollEventType may occur more than one time when the Thumb is dragged in the ScrollBar. |