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