LinearThicknessKeyFrame Constructors

Definition

Initializes a new instance of the LinearThicknessKeyFrame class.

Overloads

LinearThicknessKeyFrame()

Initializes a new instance of the LinearThicknessKeyFrame class.

LinearThicknessKeyFrame(Thickness)

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

LinearThicknessKeyFrame(Thickness, KeyTime)

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

LinearThicknessKeyFrame()

Initializes a new instance of the LinearThicknessKeyFrame class.

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

Applies to

LinearThicknessKeyFrame(Thickness)

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

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

Parameters

value
Thickness

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

Applies to

LinearThicknessKeyFrame(Thickness, KeyTime)

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

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

Parameters

value
Thickness

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