This documentation is archived and is not being maintained.
ScrollEventType Enumeration
.NET Framework 1.1
Specifies the type of action used to raise the Scroll event.
[Visual Basic] <Serializable> <ComVisible(True)> Public Enum ScrollEventType [C#] [Serializable] [ComVisible(true)] public enum ScrollEventType [C++] [Serializable] [ComVisible(true)] __value public enum ScrollEventType [JScript] public Serializable ComVisible(true) enum ScrollEventType
Remarks
This enumeration is used by ScrollEventArgs.Type.
Members
| Member name | Description |
|---|---|
| EndScroll | The scroll box has stopped moving. |
| First | The scroll box was moved to the Minimum position. |
| LargeDecrement | 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 | 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 | The scroll box was moved to the Maximum position. |
| SmallDecrement | 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 | 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 | The scroll box was moved. |
| ThumbTrack | The scroll box is currently being moved. |
Requirements
Namespace: System.Windows.Forms
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
See Also
System.Windows.Forms Namespace | ScrollEventArgs | Scroll | Type
Show: