Animates element property values using configurable animation settings and easing functions.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class ElementValuesAnimator : IDisposable
Inheritance: objectElementValuesAnimator
Implements:
Constructors
Initializes a new instance of the ElementValuesAnimator class.
public ElementValuesAnimator(RadObject element, AnimatedPropertySetting setting)
The RadObject element to animate.
settingAnimatedPropertySettingThe animation settings for the property.
Properties
Gets a value indicating whether the animation is currently running.
public bool IsRunning { get; }
true if the animation is running; otherwise, false.
Gets or sets the current animated value.
public object Value { get; set; }
The current value of the animated property.
Methods
Releases all resources used by the ElementValuesAnimator.
public void Dispose()
Implements:
Pauses the animation temporarily.
public void Pause(RadObject element)
The element to pause animation for.
Resumes a paused animation.
public void Resume(RadObject element)
The element to resume animation for.
Starts the animation for the specified element.
Stops the animation and applies the final value.
public void Stop()
Updates the animated property value for the current frame.
protected virtual void UpdateValue()