EasingRectKeyFrame Constructors

Definition

Initializes a new instance of the EasingRectKeyFrame class.

Overloads

EasingRectKeyFrame()

Initializes a new instance of the EasingRectKeyFrame class.

EasingRectKeyFrame(Rect)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value.

EasingRectKeyFrame(Rect, KeyTime)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value and key time.

EasingRectKeyFrame(Rect, KeyTime, IEasingFunction)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value, key time, and easing function.

EasingRectKeyFrame()

Initializes a new instance of the EasingRectKeyFrame class.

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

See also

Applies to

EasingRectKeyFrame(Rect)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value.

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

Parameters

value
Rect

The initial Rect value.

Applies to

EasingRectKeyFrame(Rect, KeyTime)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value and key time.

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

Parameters

value
Rect

The initial Rect value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingRectKeyFrame(Rect, KeyTime, IEasingFunction)

Initializes a new instance of the EasingRectKeyFrame class with the specified Rect value, key time, and easing function.

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

Parameters

value
Rect

The initial Rect value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to