Compartir a través de


ScalarKeyFrameAnimation.InsertKeyFrame Método

Definición

Sobrecargas

InsertKeyFrame(Single, Single)

Inserta un fotograma clave.

InsertKeyFrame(Single, Single, CompositionEasingFunction)

Inserta un fotograma clave.

InsertKeyFrame(Single, Single)

Inserta un fotograma clave.

public:
 virtual void InsertKeyFrame(float normalizedProgressKey, float value) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
void InsertKeyFrame(float const& normalizedProgressKey, float const& value);
[Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
public void InsertKeyFrame(float normalizedProgressKey, float value);
function insertKeyFrame(normalizedProgressKey, value)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Single)

Parámetros

normalizedProgressKey
Single

float

El tiempo en el que debe producirse el fotograma clave, expresado como un porcentaje de la duración de la animación. El valor permitido es de 0,0 a 1,0.

value
Single

float

Valor del fotograma clave.

Atributos

Consulte también

Se aplica a

InsertKeyFrame(Single, Single, CompositionEasingFunction)

Inserta un fotograma clave.

public:
 virtual void InsertKeyFrame(float normalizedProgressKey, float value, CompositionEasingFunction ^ easingFunction) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
void InsertKeyFrame(float const& normalizedProgressKey, float const& value, CompositionEasingFunction const& easingFunction);
[Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
public void InsertKeyFrame(float normalizedProgressKey, float value, CompositionEasingFunction easingFunction);
function insertKeyFrame(normalizedProgressKey, value, easingFunction)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Single, easingFunction As CompositionEasingFunction)

Parámetros

normalizedProgressKey
Single

float

El tiempo en el que debe producirse el fotograma clave, expresado como un porcentaje de la duración de la animación. El valor permitido es de 0,0 a 1,0.

value
Single

float

Valor del fotograma clave.

easingFunction
CompositionEasingFunction

Función de aceleración que se va a usar para interpolar entre fotogramas clave.

Atributos

Consulte también

Se aplica a