Skip to main content
A newer version of this page is available. .

ColumnViewOptionsView.AnimationType Property

Gets or sets the animation mode, which identifies cells for which animation is enabled.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(GridAnimationType.Default)]
[XtraSerializableProperty]
public GridAnimationType AnimationType { get; set; }

Property Value

Type Default Description
GridAnimationType **Default**

A GridAnimationType value that represents animation mode.

Available values:

Name Description
Default

Animation is enabled within a View’s focused row/card if the WindowsFormsSettings.AnimationMode global setting is set to Default or EnableAll; otherwise, disables animation.

AnimateAllContent

Animation is enabled within all visible cells of a View object.

AnimateFocusedItem

Animation is enabled within a View’s focused row/card.

NeverAnimate

Animation is disabled.

Property Paths

You can access this nested property as listed below:

Object Type Path to AnimationType
AdvBandedGridView
.OptionsView.AnimationType
BandedGridView
.OptionsView.AnimationType
ColumnView
.OptionsView.AnimationType
CardView
.OptionsView.AnimationType
GridView
.OptionsView.AnimationType
LayoutView
.OptionsView.AnimationType
TileView
.OptionsView.AnimationType
WinExplorerView
.OptionsView.AnimationType

Remarks

The following controls, when used standalone or in-place within the GridControl, support animation of their contents:

The AnimationType property specifies animation mode. It allows you to enable animation within the currently focused row/card, within all visible rows/cards at the same time or disable animation.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AnimationType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also