SplineDoubleKeyFrame Constructors

Definition

Initializes a new instance of the SplineDoubleKeyFrame class.

Overloads

SplineDoubleKeyFrame()

Initializes a new instance of the SplineDoubleKeyFrame class.

SplineDoubleKeyFrame(Double)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value.

SplineDoubleKeyFrame(Double, KeyTime)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value and key time.

SplineDoubleKeyFrame(Double, KeyTime, KeySpline)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value, key time, and KeySpline.

SplineDoubleKeyFrame()

Initializes a new instance of the SplineDoubleKeyFrame class.

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

Applies to

SplineDoubleKeyFrame(Double)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value.

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

Parameters

value
Double

Ending value (also known as "target value") for the key frame.

Applies to

SplineDoubleKeyFrame(Double, KeyTime)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value and key time.

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

Parameters

value
Double

Ending value (also known as "target value") for the key frame.

keyTime
KeyTime

Key time for the key frame. The key time determines when the target value is reached which is also when the key frame ends.

Applies to

SplineDoubleKeyFrame(Double, KeyTime, KeySpline)

Initializes a new instance of the SplineDoubleKeyFrame class with the specified ending value, key time, and KeySpline.

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

Parameters

value
Double

Ending value (also known as "target value") for the key frame.

keyTime
KeyTime

Key time for the key frame. The key time determines when the target value is reached which is also when the key frame ends.

keySpline
KeySpline

KeySpline for the key frame. The KeySpline represents a Bezier curve which defines animation progress of the key frame.

Applies to