言語

EasingRectKeyFrame コンストラクター

定義

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

オーバーロード

名前 説明
EasingRectKeyFrame()

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

EasingRectKeyFrame(Rect)

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

EasingRectKeyFrame(Rect, KeyTime)

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

EasingRectKeyFrame(Rect, KeyTime, IEasingFunction)

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

EasingRectKeyFrame()

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

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

こちらもご覧ください

適用対象

EasingRectKeyFrame(Rect)

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

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

パラメーター

value
Rect

初期 Rect 値。

適用対象

EasingRectKeyFrame(Rect, KeyTime)

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

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

パラメーター

value
Rect

初期 Rect 値。

keyTime
KeyTime

最初のキー時刻。

こちらもご覧ください

適用対象

EasingRectKeyFrame(Rect, KeyTime, IEasingFunction)

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

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

パラメーター

value
Rect

初期 Rect 値。

keyTime
KeyTime

最初のキー時刻。

easingFunction
IEasingFunction

イージング関数。

こちらもご覧ください

適用対象