SplinePointKeyFrame コンストラクター

定義

SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

オーバーロード

SplinePointKeyFrame()

SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

SplinePointKeyFrame(Point)

指定した終了値を使用して SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

SplinePointKeyFrame(Point, KeyTime)

指定した終了値とキー時刻を使用して SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

SplinePointKeyFrame(Point, KeyTime, KeySpline)

指定した終了値、キー時刻、および SplinePointKeyFrame を使用して、KeySpline クラスの新しいインスタンスを初期化します。

SplinePointKeyFrame()

SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

public:
 SplinePointKeyFrame();
public SplinePointKeyFrame ();
Public Sub New ()

適用対象

SplinePointKeyFrame(Point)

指定した終了値を使用して SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

public:
 SplinePointKeyFrame(System::Windows::Point value);
public SplinePointKeyFrame (System.Windows.Point value);
new System.Windows.Media.Animation.SplinePointKeyFrame : System.Windows.Point -> System.Windows.Media.Animation.SplinePointKeyFrame
Public Sub New (value As Point)

パラメーター

value
Point

キー フレームの終了値 (「ターゲット値」)。

適用対象

SplinePointKeyFrame(Point, KeyTime)

指定した終了値とキー時刻を使用して SplinePointKeyFrame クラスの新しいインスタンスを初期化します。

public:
 SplinePointKeyFrame(System::Windows::Point value, System::Windows::Media::Animation::KeyTime keyTime);
public SplinePointKeyFrame (System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.SplinePointKeyFrame : System.Windows.Point * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.SplinePointKeyFrame
Public Sub New (value As Point, keyTime As KeyTime)

パラメーター

value
Point

キー フレームの終了値 (「ターゲット値」)。

keyTime
KeyTime

キー フレームのキー時刻。 キー時刻によりターゲット値に到達する時点が決まります。この時刻はキーフレームが終了する時点にもなります。

適用対象

SplinePointKeyFrame(Point, KeyTime, KeySpline)

指定した終了値、キー時刻、および SplinePointKeyFrame を使用して、KeySpline クラスの新しいインスタンスを初期化します。

public:
 SplinePointKeyFrame(System::Windows::Point value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::KeySpline ^ keySpline);
public SplinePointKeyFrame (System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline);
new System.Windows.Media.Animation.SplinePointKeyFrame : System.Windows.Point * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.KeySpline -> System.Windows.Media.Animation.SplinePointKeyFrame
Public Sub New (value As Point, keyTime As KeyTime, keySpline As KeySpline)

パラメーター

value
Point

キー フレームの終了値 (「ターゲット値」)。

keyTime
KeyTime

キー フレームのキー時刻。 キー時刻によりターゲット値に到達する時点が決まります。この時刻はキーフレームが終了する時点にもなります。

keySpline
KeySpline

キー フレームの KeySplineKeySpline は、キー フレームのアニメーションの進行を定義するベジエ曲線を表します。

適用対象