Skip to main content

TableView.ScrollAnimationMode Property

Gets or sets the per-pixel scrolling mode. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.dll

#Declaration

[CloneDetailMode(CloneDetailMode.Skip)]
[XtraSerializableProperty]
public ScrollAnimationMode ScrollAnimationMode { get; set; }

#Property Value

Type Description
ScrollAnimationMode

A ScrollAnimationMode enumeration value that specifies the per-pixel scrolling mode.

#Remarks

To provide a visual effect, per-pixel scrolling includes the ScrollAnimationMode and TableView.ScrollAnimationDuration properties. The first property specifies the scrolling mode, the second property specifies the animation length.

The following modes are available:

  • Ease Out

    Starts quickly and then decelerates.

  • Ease In/Out

    Starts slowly, accelerates and then decelerates.

  • Linear

    Moves smoothly.

  • Custom

    Handle the TableView.CustomScrollAnimation event, to provide a custom animation effect.

#Implements

DevExpress.Xpf.Grid.ITableView.ScrollAnimationMode
See Also