windowsforms-devexpress-dot-xtratreelist-dot-treelistoptionsview-d46b941e.md
Gets or sets the animation mode, which identifies cells for which animation is enabled.
Namespace : DevExpress.XtraTreeList
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[DefaultValue(TreeListAnimationType.Default)]
[XtraSerializableProperty]
public TreeListAnimationType AnimationType { get; set; }
<DefaultValue(TreeListAnimationType.Default)>
<XtraSerializableProperty>
Public Property AnimationType As TreeListAnimationType
| 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.
|
You can access this nested property as listed below:
| Object Type | Path to AnimationType |
|---|---|
| TreeList |
.OptionsView .AnimationType
|
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