EasingDoubleKeyFrame コンストラクター

定義

オーバーロード

EasingDoubleKeyFrame()

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

EasingDoubleKeyFrame(Double)

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

EasingDoubleKeyFrame(Double, KeyTime)

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

EasingDoubleKeyFrame(Double, KeyTime, IEasingFunction)

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

EasingDoubleKeyFrame()

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

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

こちらもご覧ください

適用対象

EasingDoubleKeyFrame(Double)

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

public:
 EasingDoubleKeyFrame(double value);
public EasingDoubleKeyFrame (double value);
new System.Windows.Media.Animation.EasingDoubleKeyFrame : double -> System.Windows.Media.Animation.EasingDoubleKeyFrame
Public Sub New (value As Double)

パラメーター

value
Double

初期 Double 値。

適用対象

EasingDoubleKeyFrame(Double, KeyTime)

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

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

パラメーター

value
Double

初期 Double 値。

keyTime
KeyTime

初期キー時刻。

こちらもご覧ください

適用対象

EasingDoubleKeyFrame(Double, KeyTime, IEasingFunction)

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

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

パラメーター

value
Double

初期 Double 値。

keyTime
KeyTime

初期キー時刻。

easingFunction
IEasingFunction

イージング関数。

こちらもご覧ください

適用対象