EasingPointKeyFrame コンストラクター

定義

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

オーバーロード

EasingPointKeyFrame()

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

EasingPointKeyFrame(Point)

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

EasingPointKeyFrame(Point, KeyTime)

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

EasingPointKeyFrame(Point, KeyTime, IEasingFunction)

指定した EasingPointKeyFrame 値、キー時刻、およびイージング関数を使用して、Point クラスの新しいインスタンスを初期化します。

EasingPointKeyFrame()

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

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

こちらもご覧ください

適用対象

EasingPointKeyFrame(Point)

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

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

パラメーター

value
Point

初期 Point 値。

適用対象

EasingPointKeyFrame(Point, KeyTime)

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

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

パラメーター

value
Point

初期 Point 値。

keyTime
KeyTime

初期キー時刻。

こちらもご覧ください

適用対象

EasingPointKeyFrame(Point, KeyTime, IEasingFunction)

指定した EasingPointKeyFrame 値、キー時刻、およびイージング関数を使用して、Point クラスの新しいインスタンスを初期化します。

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

パラメーター

value
Point

初期 Point 値。

keyTime
KeyTime

初期キー時刻。

easingFunction
IEasingFunction

イージング関数。

こちらもご覧ください

適用対象