RadDoubleAnimation
Represents a double-precision floating-point animation that animates a property value over time. This class extends RadAnimation to provide specific functionality for animating double values.
Definition
Namespace:Telerik.Maui
Assembly:Telerik.Maui.Core.dll
Syntax:
public class RadDoubleAnimation : RadAnimation
Inheritance: objectRadAnimationRadDoubleAnimation
Inherited Members
Constructors
Initializes a new instance of the RadDoubleAnimation class.
public RadDoubleAnimation()
Properties
Gets or sets the starting value of the animation.
public double? From { get; set; }
A nullable double representing the starting value of the animation. If null, the animation will start from the current value of the target property.
Gets or sets the total amount by which the animation changes its From value. The default value is null.
public double? Step { get; set; }
A nullable double representing the step amount for the animation. When specified, this value determines the increment between animation frames.
Events
Occurs when the animation progress changes during execution.
public event EventHandler<AnimationProgressChangedEventArgs> ProgressChanged