LinearInt16KeyFrame Constructors

Definition

Initializes a new instance of the LinearInt16KeyFrame class.

Overloads

LinearInt16KeyFrame()

Initializes a new instance of the LinearInt16KeyFrame class.

LinearInt16KeyFrame(Int16)

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

LinearInt16KeyFrame(Int16, KeyTime)

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

LinearInt16KeyFrame()

Initializes a new instance of the LinearInt16KeyFrame class.

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

Applies to

LinearInt16KeyFrame(Int16)

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

public:
 LinearInt16KeyFrame(short value);
public LinearInt16KeyFrame (short value);
new System.Windows.Media.Animation.LinearInt16KeyFrame : int16 -> System.Windows.Media.Animation.LinearInt16KeyFrame
Public Sub New (value As Short)

Parameters

value
Int16

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

Applies to

LinearInt16KeyFrame(Int16, KeyTime)

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

public:
 LinearInt16KeyFrame(short value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearInt16KeyFrame (short value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearInt16KeyFrame : int16 * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearInt16KeyFrame
Public Sub New (value As Short, keyTime As KeyTime)

Parameters

value
Int16

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