The TweenDoubleDescription type exposes the following members.

Constructors

  NameDescription
TweenDoubleDescriptionOverloaded.

Methods

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

Examples

 Copy Code
            TweenDoubleDescription tdd = new TweenDoubleDescription(myCanvas, TweenablePropertie.ScaleX, Equation.EaseOutElastic, 2, 2);
            tdd.Clear(); //remove the animation above        
                    
ContinueTo
Method setting the new end value, starting from actual value - don't use this method for RenderTransform animation.
 Copy Code
            myTweenObject.ContinueTo( 200 /* Width or Left for example */ );
                    
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 xaml object lively.
 Copy Code
            myTweenObject.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: TweenDoubleDescription.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