Skip to main content

DocumentAnimationProperties.FrameInterval Property

Gets or sets for how long one animation frame is visible before changed to another. Decreasing this value improves the animation quality but can negatively affect application performance.

Namespace: DevExpress.XtraBars.Docking2010.Views.Widget

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(20000)]
[XtraSerializableProperty(XtraSerializationFlags.DefaultValue)]
public int FrameInterval { get; set; }

Property Value

Type Default Description
Int32 20000

An Int32 value that is the duration of time (in milliseconds) for which an animation frame is visible.

Remarks

Animation effects are affected by both the FrameInterval and DocumentAnimationProperties.FrameCount properties. For example, to minimize document resize animations played while end-users drag widgets, set the FrameInterval property to 1 and the DocumentAnimationProperties.FrameCount property to 5.

See Also