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