DXTreeView.Scrolled Event
Fires after a scroll operation.
Namespace: DevExpress.Maui.TreeView
Assembly: DevExpress.Maui.TreeView.dll
NuGet Package: DevExpress.Maui.TreeView
Declaration
public event EventHandler<TreeViewScrolledEventArgs> Scrolled
Event Data
The Scrolled event's data class is TreeViewScrolledEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Delta | Gets the difference between the current and previous scroll positions. |
| ExtentHeight | Gets the extent height. |
| FirstVisibleIndex | Gets the index of the first visible item. |
| LastVisibleIndex | Gets the index of the last visible item. |
| Offset | Gets the top offset of the scrolled content. |
| ViewportHeight | Gets the viewport height. |
See Also