Version

Marquee Animation Style Settings

The WinActivityIndicator™ control offers the Marquee style of animation to indicate to end users that there is a process occurring behind the scenes. With Marquee style, you can choose if animation should restart from the beginning every time it reaches the end of the animation, or if it should bounce back in the opposite direction. There is a property called MarqueeAnimationStyle that can be set either to Continuous or to BounceBack. By default it is set to Continuous. The width of the Marquee marker can be changed using the MarqueeMarkerWidth property.

Also there is a MarqueeFillAppearance property that can be used to set Appearance objects for the Marquee style.

This topic assumes that the control’s animation is enabled using the AnimationEnabled property.

In Visual Basic:

Me.ultraActivityIndicator1.MarqueeAnimationStyle = Infragistics.Win.UltraActivityIndicator.MarqueeAnimationStyle.BounceBack
Me.ultraActivityIndicator1.MarqueeFillAppearance.BackColor = Color.Red
' Set width of Marquee
Me.ultraActivityIndicator1.MarqueeMarkerWidth = 60

In C#:

this.ultraActivityIndicator1.MarqueeAnimationStyle = Infragistics.Win.UltraActivityIndicator.MarqueeAnimationStyle.BounceBack;
this.ultraActivityIndicator1.MarqueeFillAppearance.BackColor = Color.Red;
// Set width of Marquee
this.ultraActivityIndicator1.MarqueeMarkerWidth = 60;