wpf-devexpress-dot-xpf-dot-grid-5f41c232.md
Lists per-pixel scrolling modes.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public enum ScrollAnimationMode
Public Enum ScrollAnimationMode
| Name | Description |
|---|---|
EaseOut |
Starts quickly and then decelerates.
|
| Linear |
Moves smoothly.
|
| EaseInOut |
Starts slowly, accelerates and then decelerates.
|
| Custom |
A custom animation effect implemented within the TableView.CustomScrollAnimation event handler (TreeListView.CustomScrollAnimation in TreeListView).
|
The following properties accept/return ScrollAnimationMode values:
The values listed by this enumeration are used to set the TableView.ScrollAnimationMode and TreeListView.ScrollAnimationMode properties. To learn more, see Per-Pixel Scrolling.
See Also