DiscreteInt64KeyFrame Constructors

Definition

Initializes a new instance of the DiscreteInt64KeyFrame class.

Overloads

DiscreteInt64KeyFrame()

Initializes a new instance of the DiscreteInt64KeyFrame class.

DiscreteInt64KeyFrame(Int64)

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

DiscreteInt64KeyFrame(Int64, KeyTime)

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

DiscreteInt64KeyFrame()

Initializes a new instance of the DiscreteInt64KeyFrame class.

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

Applies to

DiscreteInt64KeyFrame(Int64)

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

public:
 DiscreteInt64KeyFrame(long value);
public DiscreteInt64KeyFrame (long value);
new System.Windows.Media.Animation.DiscreteInt64KeyFrame : int64 -> System.Windows.Media.Animation.DiscreteInt64KeyFrame
Public Sub New (value As Long)

Parameters

value
Int64

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

Applies to

DiscreteInt64KeyFrame(Int64, KeyTime)

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

public:
 DiscreteInt64KeyFrame(long value, System::Windows::Media::Animation::KeyTime keyTime);
public DiscreteInt64KeyFrame (long value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.DiscreteInt64KeyFrame : int64 * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.DiscreteInt64KeyFrame
Public Sub New (value As Long, keyTime As KeyTime)

Parameters

value
Int64

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