Animation Constructors

Definition

Overloads

Animation()

Creates a new Animation object with default values.

Animation(Action<Double>, Double, Double, Easing, Action)

Creates a new Animation object with the specified parameters.

Animation()

Creates a new Animation object with default values.

public Animation ();

Applies to

Animation(Action<Double>, Double, Double, Easing, Action)

Creates a new Animation object with the specified parameters.

public Animation (Action<double> callback, double start = 0, double end = 1, Xamarin.Forms.Easing easing = default, Action finished = default);
new Xamarin.Forms.Animation : Action<double> * double * double * Xamarin.Forms.Easing * Action -> Xamarin.Forms.Animation

Parameters

callback
Action<Double>

An action that is called with successive animation values.

start
Double

The fraction into the current animation at which to start the animation.

end
Double

The fraction into the current animation at which to end the animation.

easing
Easing

The easing function to use to transision in, out, or in and out of the animation.

finished
Action

An action to call when the animation is finished.

Applies to