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