Language

EasingPointKeyFrame コンストラクター

定義

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

オーバーロード

名前 説明
EasingPointKeyFrame()

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

EasingPointKeyFrame(Point)

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

EasingPointKeyFrame(Point, KeyTime)

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

EasingPointKeyFrame(Point, KeyTime, IEasingFunction)

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

EasingPointKeyFrame()

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

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

こちらもご覧ください

適用対象

EasingPointKeyFrame(Point)

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

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

イージング関数。

こちらもご覧ください

適用対象