LinearSizeKeyFrame 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 LinearSizeKeyFrame class.
Overloads
LinearSizeKeyFrame() |
Initializes a new instance of the LinearSizeKeyFrame class. |
LinearSizeKeyFrame(Size) |
Initializes a new instance of the LinearSizeKeyFrame class with the specified ending value. |
LinearSizeKeyFrame(Size, KeyTime) |
Initializes a new instance of the LinearSizeKeyFrame class with the specified ending value and key time. |
LinearSizeKeyFrame()
Initializes a new instance of the LinearSizeKeyFrame class.
public:
LinearSizeKeyFrame();
public LinearSizeKeyFrame ();
Public Sub New ()
Applies to
LinearSizeKeyFrame(Size)
Initializes a new instance of the LinearSizeKeyFrame class with the specified ending value.
public:
LinearSizeKeyFrame(System::Windows::Size value);
public LinearSizeKeyFrame (System.Windows.Size value);
new System.Windows.Media.Animation.LinearSizeKeyFrame : System.Windows.Size -> System.Windows.Media.Animation.LinearSizeKeyFrame
Public Sub New (value As Size)
Parameters
- value
- Size
Ending value (also known as "target value") for the key frame.
Applies to
LinearSizeKeyFrame(Size, KeyTime)
Initializes a new instance of the LinearSizeKeyFrame class with the specified ending value and key time.
public:
LinearSizeKeyFrame(System::Windows::Size value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearSizeKeyFrame (System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearSizeKeyFrame : System.Windows.Size * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearSizeKeyFrame
Public Sub New (value As Size, keyTime As KeyTime)
Parameters
- value
- Size
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.