Class PointAnimation
Animates the value of a Point property between two target values using linear interpolation over a specified Duration.
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
public sealed class PointAnimation : AnimationTimeline
Constructors
| Improve this Doc View SourcePointAnimation()
Initializes a new instance of the PointAnimation class.
Declaration
public PointAnimation()
Fields
| Improve this Doc View SourceByProperty
Identifies the By dependency property.
Declaration
public static readonly DependencyProperty ByProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
EasingFunctionProperty
Identifies the EasingFunction dependency property.
Declaration
public static readonly DependencyProperty EasingFunctionProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
FromProperty
Identifies the From dependency property.
Declaration
public static readonly DependencyProperty FromProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ToProperty
Identifies the To dependency property.
Declaration
public static readonly DependencyProperty ToProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceBy
Gets or sets the total amount by which the animation changes its starting value. The default is null.
Declaration
public Point? By { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Point> |
EasingFunction
Gets or sets the easing function you are applying to the animation. The default is null.
Declaration
public IEasingFunction EasingFunction { get; set; }
Property Value
Type | Description |
---|---|
IEasingFunction |
From
Gets or sets the animation's starting value. The default is null.
Declaration
public Point? From { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Point> |
To
Gets or sets the animation's ending value. The default is null.
Declaration
public Point? To { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Point> |