SplineRectKeyFrame Constructors

Definition

Initializes a new instance of the SplineRectKeyFrame class.

Overloads

SplineRectKeyFrame()

Initializes a new instance of the SplineRectKeyFrame class.

SplineRectKeyFrame(Rect)

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

SplineRectKeyFrame(Rect, KeyTime)

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

SplineRectKeyFrame(Rect, KeyTime, KeySpline)

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

SplineRectKeyFrame()

Initializes a new instance of the SplineRectKeyFrame class.

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

Applies to

SplineRectKeyFrame(Rect)

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

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

Parameters

value
Rect

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

Applies to

SplineRectKeyFrame(Rect, KeyTime)

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

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

Parameters

value
Rect

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

SplineRectKeyFrame(Rect, KeyTime, KeySpline)

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

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

Parameters

value
Rect

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