IPropertyAnimationBuilder<T> Interface

Definition

An animation for an animation builder using keyframes, targeting a specific property.

public interface IPropertyAnimationBuilder<in T>
type IPropertyAnimationBuilder<'T> = interface
Public Interface IPropertyAnimationBuilder(Of In T)

Type Parameters

T

The type of values being set by the animation being constructed.

This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.

Methods

NormalizedKeyFrames(Action<INormalizedKeyFrameAnimationBuilder<T>>, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<RepeatOption>, Nullable<AnimationDelayBehavior>)

Adds a custom animation based on normalized keyframes ot the current schedule.

NormalizedKeyFrames<TState>(TState, Action<INormalizedKeyFrameAnimationBuilder<T>, TState>, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<RepeatOption>, Nullable<AnimationDelayBehavior>)

Adds a custom animation based on normalized keyframes ot the current schedule.

TimedKeyFrames(Action<ITimedKeyFrameAnimationBuilder<T>>, Nullable<TimeSpan>, Nullable<RepeatOption>, Nullable<AnimationDelayBehavior>)

Adds a custom animation based on timed keyframes to the current schedule.

TimedKeyFrames<TState>(TState, Action<ITimedKeyFrameAnimationBuilder<T>, TState>, Nullable<TimeSpan>, Nullable<RepeatOption>, Nullable<AnimationDelayBehavior>)

Adds a custom animation based on timed keyframes to the current schedule.

Applies to