CompositorExtensions.CreateBooleanKeyFrameAnimation Method

Definition

Creates a Windows.UI.Composition.BooleanKeyFrameAnimation instance with the given parameters to on a target element.

public static Windows.UI.Composition.BooleanKeyFrameAnimation CreateBooleanKeyFrameAnimation (this Windows.UI.Composition.Compositor compositor, string? target, bool to, bool? from = default, TimeSpan? delay = default, TimeSpan? duration = default, Windows.UI.Composition.AnimationDelayBehavior delayBehavior = Windows.UI.Composition.AnimationDelayBehavior.SetInitialValueBeforeDelay, Windows.UI.Composition.AnimationDirection direction = Windows.UI.Composition.AnimationDirection.Normal, Windows.UI.Composition.AnimationIterationBehavior iterationBehavior = Windows.UI.Composition.AnimationIterationBehavior.Count, int iterationCount = 1);
static member CreateBooleanKeyFrameAnimation : Windows.UI.Composition.Compositor * string * bool * Nullable<bool> * Nullable<TimeSpan> * Nullable<TimeSpan> * Windows.UI.Composition.AnimationDelayBehavior * Windows.UI.Composition.AnimationDirection * Windows.UI.Composition.AnimationIterationBehavior * int -> Windows.UI.Composition.BooleanKeyFrameAnimation
<Extension()>
Public Function CreateBooleanKeyFrameAnimation (compositor As Compositor, target As String, to As Boolean, Optional from As Nullable(Of Boolean) = Nothing, Optional delay As Nullable(Of TimeSpan) = Nothing, Optional duration As Nullable(Of TimeSpan) = Nothing, Optional delayBehavior As AnimationDelayBehavior = Windows.UI.Composition.AnimationDelayBehavior.SetInitialValueBeforeDelay, Optional direction As AnimationDirection = Windows.UI.Composition.AnimationDirection.Normal, Optional iterationBehavior As AnimationIterationBehavior = Windows.UI.Composition.AnimationIterationBehavior.Count, Optional iterationCount As Integer = 1) As BooleanKeyFrameAnimation

Parameters

compositor
Windows.UI.Composition.Compositor

The current Windows.UI.Composition.Compositor instance used to create the animation.

target
String

The optional target property to animate.

to
Boolean

The final value for the animation.

from
Nullable<Boolean>

The optional starting value for the animation.

delay
Nullable<TimeSpan>

The optional initial delay for the animation.

duration
Nullable<TimeSpan>

The optional animation duration.

delayBehavior
Windows.UI.Composition.AnimationDelayBehavior

The delay behavior to use for the animation.

direction
Windows.UI.Composition.AnimationDirection

The direction to use when playing the animation.

iterationBehavior
Windows.UI.Composition.AnimationIterationBehavior

The iteration behavior to use for the animation.

iterationCount
Int32

The iteration count to use for the animation.

Returns

Windows.UI.Composition.BooleanKeyFrameAnimation

A Windows.UI.Composition.BooleanKeyFrameAnimation instance with the specified parameters.

Applies to