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