'Declaration <DescriptionAttribute("Raised when the scroll thumb has been moved by either a mouse or keyboard action.")> <CategoryAttribute("Action")> Public Event Scroll As ScrollEventHandler
'Usage Dim instance As WinScrollBar Dim handler As ScrollEventHandler AddHandler instance.Scroll, handler
[Description("Raised when the scroll thumb has been moved by either a mouse or keyboard action.")] [Category("Action")] public event ScrollEventHandler Scroll
Event Data
The event handler receives an argument of type ScrollEventArgs containing data related to this event. The following ScrollEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewValue | |
OldValue | |
ScrollOrientation | |
Type |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also