DiscreteThicknessKeyFrame Constructors

Definition

Initializes a new instance of the DiscreteThicknessKeyFrame class.

Overloads

DiscreteThicknessKeyFrame()

Initializes a new instance of the DiscreteThicknessKeyFrame class.

DiscreteThicknessKeyFrame(Thickness)

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

DiscreteThicknessKeyFrame(Thickness, KeyTime)

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

DiscreteThicknessKeyFrame()

Initializes a new instance of the DiscreteThicknessKeyFrame class.

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

Applies to

DiscreteThicknessKeyFrame(Thickness)

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

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

Parameters

value
Thickness

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

Applies to

DiscreteThicknessKeyFrame(Thickness, KeyTime)

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

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

Parameters

value
Thickness

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

keyTime
KeyTime

The 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