ScrollEventType Enum
Definition
Specifies the type of action used to raise the Scroll event.
public enum class ScrollEventType
[System.Runtime.InteropServices.ComVisible(true)]
public enum ScrollEventType
type ScrollEventType =
Public Enum ScrollEventType
- Inheritance
- Attributes
Fields
EndScroll | 8 | The scroll box has stopped moving. |
First | 6 | The scroll box was moved to the Minimum position. |
LargeDecrement | 2 | The scroll box moved a large distance. The user clicked the scroll bar to the left(horizontal) or above(vertical) the scroll box, or pressed the PAGE UP key. |
LargeIncrement | 3 | The scroll box moved a large distance. The user clicked the scroll bar to the right(horizontal) or below(vertical) the scroll box, or pressed the PAGE DOWN key. |
Last | 7 | The scroll box was moved to the Maximum position. |
SmallDecrement | 0 | The scroll box was moved a small distance. The user clicked the left(horizontal) or top(vertical) scroll arrow, or pressed the UP ARROW key. |
SmallIncrement | 1 | The scroll box was moved a small distance. The user clicked the right(horizontal) or bottom(vertical) scroll arrow, or pressed the DOWN ARROW key. |
ThumbPosition | 4 | The scroll box was moved. |
ThumbTrack | 5 | The scroll box is currently being moved. |
Remarks
This enumeration is used by ScrollEventArgs.Type.