ScrollEventType Enumeration
Specifies the type of Avalonia.Controls.Primitives.ScrollBar.Scroll event
that occurred.
Namespace: Avalonia.Controls.PrimitivesAssembly: Avalonia.Controls (in Avalonia.Controls.dll) Version: 11.3.999
public enum ScrollEventType
Public Enumeration ScrollEventType
| SmallDecrement | 0 |
Specifies that the Avalonia.Controls.Primitives.Thumb moved a specified
distance, as determined by the value of Avalonia.Controls.Primitives.RangeBase.SmallChange.
The Avalonia.Controls.Primitives.Thumb moved to the left for a horizontal
Avalonia.Controls.Primitives.ScrollBar or upward for a vertical Avalonia.Controls.Primitives.ScrollBar.
|
| SmallIncrement | 1 |
Specifies that the Avalonia.Controls.Primitives.Thumb moved a specified
distance, as determined by the value of Avalonia.Controls.Primitives.RangeBase.SmallChange.
The Avalonia.Controls.Primitives.Thumb moved to the right for a horizontal
Avalonia.Controls.Primitives.ScrollBar or downward for a vertical Avalonia.Controls.Primitives.ScrollBar.
|
| LargeDecrement | 2 |
Specifies that the Avalonia.Controls.Primitives.Thumb moved a specified
distance, as determined by the value of Avalonia.Controls.Primitives.RangeBase.LargeChange.
The Avalonia.Controls.Primitives.Thumb moved to the left for a horizontal
Avalonia.Controls.Primitives.ScrollBar or upward for a vertical Avalonia.Controls.Primitives.ScrollBar.
|
| LargeIncrement | 3 |
Specifies that the Avalonia.Controls.Primitives.Thumb moved a specified
distance, as determined by the value of Avalonia.Controls.Primitives.RangeBase.LargeChange.
The Avalonia.Controls.Primitives.Thumb moved to the right for a horizontal
Avalonia.Controls.Primitives.ScrollBar or downward for a vertical Avalonia.Controls.Primitives.ScrollBar.
|
| ThumbTrack | 4 |
The Avalonia.Controls.Primitives.Thumb was dragged and caused a Avalonia.UIElement.MouseMove
event. A Avalonia.Controls.Primitives.ScrollBar.Scroll event of this Avalonia.Controls.Primitives.ScrollEventType
may occur more than one time when the Avalonia.Controls.Primitives.Thumb
is dragged in the Avalonia.Controls.Primitives.ScrollBar.
|
| EndScroll | 5 |
Specifies that the Avalonia.Controls.Primitives.Thumb was dragged to a
new position and is now no longer being dragged by the user.
|