Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.44 KB

pointanimation_to.md

File metadata and controls

40 lines (27 loc) · 1.44 KB
-api-id -api-type
P:Windows.UI.Xaml.Media.Animation.PointAnimation.To
winrt property

Windows.UI.Xaml.Media.Animation.PointAnimation.To

-description

Gets or sets the animation's ending value.

-xaml-syntax

<PointAnimation To="x,y"/>

-xaml-values

x
xThe x-value of the Point that specifies the animation end value.
y
yThe y-value of a Point that specifies the animation end value.
## -property-value The ending value of the animation. The default is **null**.

If you are programming using C#or Microsoft Visual Basic, the type of this property is projected as Point?(a nullable Point).

-remarks

A PointAnimation typically has at least one of the From, By or To properties set, but never all three. For more info, see Remarks in PointAnimation.

The null default value indicates that the base non-animated value is the default value for To, not that the animated value is literally null. The base non-animated value is determined at run time by the dependency property system. For more info, see Dependency properties overview.

-examples

-see-also