EasingSingleKeyFrame Constructors

Definition

Overloads

EasingSingleKeyFrame()

Initializes a new instance of the EasingSingleKeyFrame class.

EasingSingleKeyFrame(Single)

Initializes a new instance of the EasingSingleKeyFrame class with the specified Single value.

EasingSingleKeyFrame(Single, KeyTime)

Initializes a new instance of the EasingSingleKeyFrame class with the specified Single value and key time.

EasingSingleKeyFrame(Single, KeyTime, IEasingFunction)

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

EasingSingleKeyFrame()

Initializes a new instance of the EasingSingleKeyFrame class.

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

Applies to

EasingSingleKeyFrame(Single)

Initializes a new instance of the EasingSingleKeyFrame class with the specified Single value.

public:
 EasingSingleKeyFrame(float value);
public EasingSingleKeyFrame (float value);
new System.Windows.Media.Animation.EasingSingleKeyFrame : single -> System.Windows.Media.Animation.EasingSingleKeyFrame
Public Sub New (value As Single)

Parameters

value
Single

The initial Single value.

See also

Applies to

EasingSingleKeyFrame(Single, KeyTime)

Initializes a new instance of the EasingSingleKeyFrame class with the specified Single value and key time.

public:
 EasingSingleKeyFrame(float value, System::Windows::Media::Animation::KeyTime keyTime);
public EasingSingleKeyFrame (float value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.EasingSingleKeyFrame : single * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.EasingSingleKeyFrame
Public Sub New (value As Single, keyTime As KeyTime)

Parameters

value
Single

The initial Single value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingSingleKeyFrame(Single, KeyTime, IEasingFunction)

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

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

Parameters

value
Single

The initial Single value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to