Skip to main content

DXExpander.AnimationProgress Property

Gets or sets the progress of animation play. This is a dependency property.

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public double AnimationProgress { get; set; }

Property Value

Type Description
Double

A Double value between 0 and 1 that represents the progress of animation play. 0 for the collapsed state, 1 for the expanded state.

Remarks

When the DXExpander‘s expand state is changed, it plays the expand or collapse animation. Use the AnimationProgress property to obtain the current animation play progress. To obtain whether the DXExpander is collapsing or expanding, use the DXExpander.Collapsing and DXExpander.Expanding properties, respectively.

To learn more, see DXExpander.

See Also