The TweenDoubleDescription type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| TweenDoubleDescription | Overloaded. |
Methods
| Name | Description | |||||
|---|---|---|---|---|---|---|
| Clear |
Clear method is used to remove contained animation in a TweenDescription object.
| |||||
TweenDoubleDescription tdd = new TweenDoubleDescription(myCanvas, TweenablePropertie.ScaleX, Equation.EaseOutElastic, 2, 2);
tdd.Clear(); //remove the animation above
| |
Method setting the new end value, starting from actual value - don't use this method for RenderTransform animation.
myTweenObject.ContinueTo( 200 /* Width or Left for example */ );
| |
Method proxy returning the current value of the property of xaml object lively.
Method proxy setting the current value of the property of xaml object lively.
myTweenObject.SetTweenedProperty( Color.FromArgb(255,68,145,64) );
| |
Properties
| Name | Description | |
|---|---|---|
| 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.
|