Skip to main content

ScrollAnimationMode Enum

Lists per-pixel scrolling modes.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public enum ScrollAnimationMode

Members

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).

Related API Members

The following properties accept/return ScrollAnimationMode values:

Remarks

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