Class PointKeyFrame
Defines an animation segment with its own target value and interpolation method for a PointAnimationUsingKeyFrames.
Inheritance
System.Object
PointKeyFrame
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Media.Animation
Assembly: OpenSilver.dll
Syntax
[NotImplemented]
public abstract class PointKeyFrame : DependencyObject, IKeyFrame
Constructors
| Improve this Doc View SourcePointKeyFrame()
Initializes a new instance of the PointKeyFrame class.
Declaration
[NotImplemented]
protected PointKeyFrame()
Fields
| Improve this Doc View SourceKeyTimeProperty
Declaration
[NotImplemented]
public static readonly DependencyProperty KeyTimeProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ValueProperty
Declaration
[NotImplemented]
public static readonly DependencyProperty ValueProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceKeyTime
Gets or sets the time at which the key frame's target Value should be reached.
Declaration
[NotImplemented]
public KeyTime KeyTime { get; set; }
Property Value
Type | Description |
---|---|
KeyTime | The time at which the key frame's current value should be equal to its Value property. The default is null. |
Value
Gets or sets the key frame's target value.
Declaration
[NotImplemented]
public Point Value { get; set; }
Property Value
Type | Description |
---|---|
Point | The key frame's target value, which is the value of this key frame at its specified KeyTime. The default is 0. |
Explicit Interface Implementations
| Improve this Doc View SourceIKeyFrame.Value
Declaration
object IKeyFrame.Value { get; set; }
Returns
Type | Description |
---|---|
System.Object |