EasingPointKeyFrame Constructors

Definition

Initializes a new instance of the EasingPointKeyFrame class.

Overloads

EasingPointKeyFrame()

Initializes a new instance of the EasingPointKeyFrame class.

EasingPointKeyFrame(Point)

Initializes a new instance of the EasingPointKeyFrame class with the specified Point value.

EasingPointKeyFrame(Point, KeyTime)

Initializes a new instance of the EasingPointKeyFrame class with the specified Point value and key time.

EasingPointKeyFrame(Point, KeyTime, IEasingFunction)

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

EasingPointKeyFrame()

Initializes a new instance of the EasingPointKeyFrame class.

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

See also

Applies to

EasingPointKeyFrame(Point)

Initializes a new instance of the EasingPointKeyFrame class with the specified Point value.

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

Parameters

value
Point

The initial Point value.

Applies to

EasingPointKeyFrame(Point, KeyTime)

Initializes a new instance of the EasingPointKeyFrame class with the specified Point value and key time.

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

Parameters

value
Point

The initial Point value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingPointKeyFrame(Point, KeyTime, IEasingFunction)

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

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

Parameters

value
Point

The initial Point value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to