The TweenColorDescription type exposes the following members.

Constructors

  NameDescription
TweenColorDescriptionOverloaded.

Methods

  NameDescription
Clear
Clear method is used to remove contained animation in a TweenDescription object.

Examples

 Copy Code
            TweenColorDescription tcd = new TweenColorDescription(myCanvas, TweenablePropertie.ScaleX, Equation.EaseOutElastic, 2, 2);
            tcd.Clear(); //remove the animation above        
                    
ContinueTo
Method setting the new end value, setting start value from actual value.
 Copy Code
                    
            myTweenColorDescription.ContinueTo( Color.FromArgb(255,68,145,64) /* Fill or Stroke */);
            //then you have to invoke the Begin method from the Tween object wich actually contains myTweenColorDescription
            myTween.Begin();
                    
Equals (Inherited from Object.)
Finalize (Inherited from Object.)
GetHashCode (Inherited from Object.)
GetTweenedProperty
Method proxy returning the current value of the property of xaml object lively.
GetType (Inherited from Object.)
MemberwiseClone (Inherited from Object.)
SetTweenedProperty
Method proxy setting the current value of the property of shape object lively.
 Copy Code
                    myTweenColorDescription.SetTweenedProperty( Color.FromArgb(255,68,145,64) );
                    
ToString (Inherited from Object.)

Properties

  NameDescription
BeginTime
BeginTime can shift the start of animated Sequence based on a number of seconds Example: TweenColorDescription.BeginTime = TimeSpan.FromSeconds (2); Can shift the start of the animation 2 seconds
TweenProperty
returns the actual property passed. You don't need to use that property.

See Also