ITimedKeyFrameAnimationBuilder<T> Interface

Definition

An interface for an animation builder using timed keyframes.

public interface ITimedKeyFrameAnimationBuilder<in T>
type ITimedKeyFrameAnimationBuilder<'T> = interface
Public Interface ITimedKeyFrameAnimationBuilder(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

ExpressionKeyFrame(TimeSpan, String, EasingType, EasingMode)

Adds a new timed expressionkeyframe to the builder in use. This method can only be used when the animation being built targets the composition layer.

KeyFrame(TimeSpan, T, EasingType, EasingMode)

Adds a new timed keyframe to the builder in use.

Extension Methods

KeyFrame<T>(ITimedKeyFrameAnimationBuilder<T>, Int32, T, EasingType, EasingMode)

Adds a new timed keyframe to the builder in use.

Applies to