LinearRectKeyFrame Constructors

Definition

Initializes a new instance of the LinearRectKeyFrame class.

Overloads

LinearRectKeyFrame()

Initializes a new instance of the LinearRectKeyFrame class.

LinearRectKeyFrame(Rect)

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

LinearRectKeyFrame(Rect, KeyTime)

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

LinearRectKeyFrame()

Initializes a new instance of the LinearRectKeyFrame class.

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

Applies to

LinearRectKeyFrame(Rect)

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

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

Parameters

value
Rect

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

Applies to

LinearRectKeyFrame(Rect, KeyTime)

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

public:
 LinearRectKeyFrame(System::Windows::Rect value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearRectKeyFrame (System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearRectKeyFrame : System.Windows.Rect * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearRectKeyFrame
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