LinearThicknessKeyFrame Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.