Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListOptionsView.AnimationType Property

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

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

#Property Value

Type Default Description
TreeListAnimationType Default

Animation mode.

Available values:

Name Description
Default

The same value as the TreeListAnimationType.AnimateAllContent option.

AnimateAllContent

Animation is enabled within all visible cells.

AnimateFocusedNode

Animation is enabled within the focused node.

NeverAnimate

Animation is disabled.

#Property Paths

You can access this nested property as listed below:

Object Type Path to AnimationType
TreeList
.OptionsView .AnimationType

#Remarks

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

The AnimationType property specifies the animation mode. It allows you to enable animation within the currently focused node, within all visible nodes at the same time or disable animation.

See Also