次の方法で共有


ColorKeyFrameAnimation.InsertKeyFrame メソッド

定義

オーバーロード

InsertKeyFrame(Single, Color)

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

InsertKeyFrame(Single, Color, CompositionEasingFunction)

指定したイージング関数を使用してキー フレームを挿入します。

InsertKeyFrame(Single, Color)

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

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

パラメーター

normalizedProgressKey
Single

float

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

value
Color

キー フレームの値。

属性

こちらもご覧ください

適用対象

InsertKeyFrame(Single, Color, CompositionEasingFunction)

指定したイージング関数を使用してキー フレームを挿入します。

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

パラメーター

normalizedProgressKey
Single

float

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

value
Color

キー フレームの値。

easingFunction
CompositionEasingFunction

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

属性

こちらもご覧ください

適用対象