Vector2KeyFrameAnimation.InsertKeyFrame Method
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
InsertKeyFrame(Single, Vector2) |
Inserts a key frame. |
InsertKeyFrame(Single, Vector2, CompositionEasingFunction) |
Inserts a keyframe with the specified easing function. |
InsertKeyFrame(Single, Vector2)
Inserts a key frame.
public:
virtual void InsertKeyFrame(float normalizedProgressKey, float2 value) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
void InsertKeyFrame(float const& normalizedProgressKey, float2 const& value);
[Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
public void InsertKeyFrame(float normalizedProgressKey, Vector2 value);
function insertKeyFrame(normalizedProgressKey, value)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Vector2)
Parameters
- normalizedProgressKey
-
Single
float
The time the key frame should occur at, expressed as a percentage of the animation Duration. Allowed value is from 0.0 to 1.0.
- Attributes
See also
Applies to
InsertKeyFrame(Single, Vector2, CompositionEasingFunction)
Inserts a keyframe with the specified easing function.
public:
virtual void InsertKeyFrame(float normalizedProgressKey, float2 value, CompositionEasingFunction ^ easingFunction) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
void InsertKeyFrame(float const& normalizedProgressKey, float2 const& value, CompositionEasingFunction const& easingFunction);
[Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
public void InsertKeyFrame(float normalizedProgressKey, Vector2 value, CompositionEasingFunction easingFunction);
function insertKeyFrame(normalizedProgressKey, value, easingFunction)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Vector2, easingFunction As CompositionEasingFunction)
Parameters
- normalizedProgressKey
-
Single
float
The time the key frame should occur at, expressed as a percentage of the animation Duration. Allowed value is from 0.0 to 1.0.
- easingFunction
- CompositionEasingFunction
The easing function to use when interpolating between frames.
- Attributes