EasingSizeKeyFrame 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 EasingSizeKeyFrame class.
Overloads
EasingSizeKeyFrame() |
Initializes a new instance of the EasingSizeKeyFrame class. |
EasingSizeKeyFrame(Size) |
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value. |
EasingSizeKeyFrame(Size, KeyTime) |
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value and key time. |
EasingSizeKeyFrame(Size, KeyTime, IEasingFunction) |
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value, key time, and easing function. |
EasingSizeKeyFrame()
Initializes a new instance of the EasingSizeKeyFrame class.
public:
EasingSizeKeyFrame();
public EasingSizeKeyFrame ();
Public Sub New ()
See also
Applies to
EasingSizeKeyFrame(Size)
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value.
public:
EasingSizeKeyFrame(System::Windows::Size value);
public EasingSizeKeyFrame (System.Windows.Size value);
new System.Windows.Media.Animation.EasingSizeKeyFrame : System.Windows.Size -> System.Windows.Media.Animation.EasingSizeKeyFrame
Public Sub New (value As Size)
Parameters
See also
Applies to
EasingSizeKeyFrame(Size, KeyTime)
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value and key time.
public:
EasingSizeKeyFrame(System::Windows::Size value, System::Windows::Media::Animation::KeyTime keyTime);
public EasingSizeKeyFrame (System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.EasingSizeKeyFrame : System.Windows.Size * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.EasingSizeKeyFrame
Public Sub New (value As Size, keyTime As KeyTime)
Parameters
- keyTime
- KeyTime
The initial key time.
See also
Applies to
EasingSizeKeyFrame(Size, KeyTime, IEasingFunction)
Initializes a new instance of the EasingSizeKeyFrame class with the specified Size value, key time, and easing function.
public:
EasingSizeKeyFrame(System::Windows::Size value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::IEasingFunction ^ easingFunction);
public EasingSizeKeyFrame (System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction);
new System.Windows.Media.Animation.EasingSizeKeyFrame : System.Windows.Size * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.IEasingFunction -> System.Windows.Media.Animation.EasingSizeKeyFrame
Public Sub New (value As Size, keyTime As KeyTime, easingFunction As IEasingFunction)
Parameters
- keyTime
- KeyTime
The initial key time.
- easingFunction
- IEasingFunction
The easing function.