OrientedAnimation
Class
Base class for all animation classes that have direction.
Definition
Namespace:Telerik.Windows.Controls.Animation
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public abstract class OrientedAnimation : BaseAnimation
Inheritance: objectRadAnimationBaseAnimationOrientedAnimation
Derived Classes:
Inherited Members
Constructors
C#
protected OrientedAnimation()
Properties
Gets or sets a value indicating whether the animated object is coming in or out of view.
C#
public AnimationDirection Direction { get; set; }
Methods
If the current Orientation of the animation is In, returns the inValue, otherwise - the outValue.
C#
protected T GetValueDependingOnDirection<T>(T valueIn, T valueOut)
The value to be returned if the current Direction is In.
valueOutTThe value to be returned if the current Direction is Out.
Returns:T
If the current Orientation of the animation is In - the inValue, otherwise - the outValue.