Class SplineVectorKeyFrame
Animates from the Vector value of the previous key frame to its own Value using splined interpolation.
Implements
Inherited Members
Namespace: System.Windows.Media.Animation
Assembly: OpenSilver.dll
Syntax
public sealed class SplineVectorKeyFrame : VectorKeyFrame, IDependencyObject, IKeyFrame
Constructors
| Improve this Doc View SourceSplineVectorKeyFrame()
Initializes a new instance of the SplineVectorKeyFrame class.
Declaration
public SplineVectorKeyFrame()
SplineVectorKeyFrame(Vector)
Initializes a new instance of the SplineVectorKeyFrame class with the specified ending value.
Declaration
public SplineVectorKeyFrame(Vector value)
Parameters
Type | Name | Description |
---|---|---|
Vector | value | Ending value (also known as "target value") for the key frame. |
SplineVectorKeyFrame(Vector, KeyTime)
Initializes a new instance of the SplineVectorKeyFrame class with the specified ending value and key time.
Declaration
public SplineVectorKeyFrame(Vector value, KeyTime keyTime)
Parameters
Type | Name | Description |
---|---|---|
Vector | value | Ending value (also known as "target value") for the key frame. |
KeyTime | keyTime | Key time for the key frame. The key time determines when the target value is reached which is also when the key frame ends. |
SplineVectorKeyFrame(Vector, KeyTime, KeySpline)
Initializes a new instance of the SplineVectorKeyFrame class with the specified ending value, key time, and KeySpline.
Declaration
public SplineVectorKeyFrame(Vector value, KeyTime keyTime, KeySpline keySpline)
Parameters
Type | Name | Description |
---|---|---|
Vector | value | Ending value (also known as "target value") for the key frame. |
KeyTime | keyTime | Key time for the key frame. The key time determines when the target value is reached which is also when the key frame ends. |
KeySpline | keySpline | KeySpline for the key frame. The KeySpline represents a Bezier curve which defines animation progress of the key frame. |
Fields
| Improve this Doc View SourceKeySplineProperty
Identifies the KeySpline dependency property.
Declaration
public static readonly DependencyProperty KeySplineProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceKeySpline
Gets or sets the two control points that define animation progress for this key frame.
Declaration
public KeySpline KeySpline { get; set; }
Property Value
Type | Description |
---|---|
KeySpline | The two control points that specify the cubic Bezier curve which defines the progress of the key frame. |
Methods
| Improve this Doc View SourceInterpolateValueCore(Vector, Double)
Calculates the value of a key frame at the progress increment provided.
Declaration
protected override Vector InterpolateValueCore(Vector baseValue, double keyFrameProgress)
Parameters
Type | Name | Description |
---|---|---|
Vector | baseValue | The value to animate from; typically the value of the previous key frame. |
System.Double | keyFrameProgress | A value between 0.0 and 1.0, inclusive, that specifies the percentage of time that has elapsed for this key frame. |
Returns
Type | Description |
---|---|
Vector | The output value of this key frame given the specified base value and progress. |