ScalarKeyFrameAnimation.InsertKeyFrame メソッド

定義

オーバーロード

InsertKeyFrame(Single, Single)

キー フレームを挿入します。

InsertKeyFrame(Single, Single, CompositionEasingFunction)

キーフレームを挿入します。

InsertKeyFrame(Single, Single)

キー フレームを挿入します。

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)

パラメーター

normalizedProgressKey
Single

float

アニメーションの 期間に対する割合で表される、キー フレームが発生する時刻。 使用できる値は 0.0 から 1.0 です。

value
Single

float

キー フレームの値。

属性

こちらもご覧ください

適用対象

InsertKeyFrame(Single, Single, CompositionEasingFunction)

キーフレームを挿入します。

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)

パラメーター

normalizedProgressKey
Single

float

アニメーションの 期間に対する割合で表される、キー フレームが発生する時刻。 使用できる値は 0.0 から 1.0 です。

value
Single

float

キー フレームの値。

easingFunction
CompositionEasingFunction

キー フレーム間の補間に使用するイージング関数。

属性

こちらもご覧ください

適用対象