EasingVectorKeyFrame Constructors

Definition

Initializes a new instance of the EasingVectorKeyFrame class.

Overloads

EasingVectorKeyFrame()

Initializes a new instance of the EasingVectorKeyFrame class.

EasingVectorKeyFrame(Vector)

Initializes a new instance of the EasingVectorKeyFrame class with the specified Vector value.

EasingVectorKeyFrame(Vector, KeyTime)

Initializes a new instance of the EasingVectorKeyFrame class with the specified Vector value and key time.

EasingVectorKeyFrame(Vector, KeyTime, IEasingFunction)

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

EasingVectorKeyFrame()

Initializes a new instance of the EasingVectorKeyFrame class.

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

See also

Applies to

EasingVectorKeyFrame(Vector)

Initializes a new instance of the EasingVectorKeyFrame class with the specified Vector value.

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

Parameters

value
Vector

The initial Vector value.

See also

Applies to

EasingVectorKeyFrame(Vector, KeyTime)

Initializes a new instance of the EasingVectorKeyFrame class with the specified Vector value and key time.

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

Parameters

value
Vector

The initial Vector value.

keyTime
KeyTime

The initial key time.

See also

Applies to

EasingVectorKeyFrame(Vector, KeyTime, IEasingFunction)

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

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

Parameters

value
Vector

The initial Vector value.

keyTime
KeyTime

The initial key time.

easingFunction
IEasingFunction

The easing function.

See also

Applies to