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