ScrollEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Represents the method that handles the Scroll event of a ScrollableControl, ScrollBar, TrackBar, or DataGridView.
- C#
- VB.NET
public delegate void ScrollEventHandler(Object sender, ScrollEventArgs e)
Public Delegate Sub ScrollEventHandler(ByVal sender As [Object], ByVal e As ScrollEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | ScrollEventArgs | A ScrollEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| ScrollableControl.Scroll | Fired when the user or code scrolls through the client area. |
| ScrollBar.Scroll | Fired when the scroll box has been moved by either a mouse or keyboard action. |
| DataGridView.Scroll | Fired when the user or code scrolls the grid. |
| SlideBar.Scroll | Fired when the SlideBar widget scrolls its content. |
| ListView.Scroll | Fired when the user or code scrolls the ListView. |