SplineThicknessKeyFrame Constructors

Definition

Initializes a new instance of the SplineThicknessKeyFrame class.

Overloads

SplineThicknessKeyFrame()

Initializes a new instance of the SplineThicknessKeyFrame class.

SplineThicknessKeyFrame(Thickness)

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

SplineThicknessKeyFrame(Thickness, KeyTime)

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

SplineThicknessKeyFrame(Thickness, KeyTime, KeySpline)

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

SplineThicknessKeyFrame()

Initializes a new instance of the SplineThicknessKeyFrame class.

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

Applies to

SplineThicknessKeyFrame(Thickness)

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

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

Parameters

value
Thickness

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

Applies to

SplineThicknessKeyFrame(Thickness, KeyTime)

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

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

Parameters

value
Thickness

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

SplineThicknessKeyFrame(Thickness, KeyTime, KeySpline)

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

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

Parameters

value
Thickness

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