DiscreteVectorKeyFrame Constructors

Definition

Initializes a new instance of the DiscreteVectorKeyFrame class.

Overloads

DiscreteVectorKeyFrame()

Initializes a new instance of the DiscreteVectorKeyFrame class.

DiscreteVectorKeyFrame(Vector)

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

DiscreteVectorKeyFrame(Vector, KeyTime)

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

DiscreteVectorKeyFrame()

Initializes a new instance of the DiscreteVectorKeyFrame class.

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

Applies to

DiscreteVectorKeyFrame(Vector)

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

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

Parameters

value
Vector

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

Applies to

DiscreteVectorKeyFrame(Vector, KeyTime)

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

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

Parameters

value
Vector

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