DoubleAnimation.To Property
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.
Gets or sets the animation's ending value.
public:
property IReference<double> ^ To { IReference<double> ^ get(); void set(IReference<double> ^ value); };
IReference<double> To();
void To(IReference<double> value);
public System.Nullable<double> To { get; set; }
var iReference = doubleAnimation.to;
doubleAnimation.to = iReference;
Public Property To As Nullable(Of Double)
<DoubleAnimation To="double"/>
Property Value
The ending value of the animation. The default is null.
If you are programming using C# or Visual Basic, the type of this property is projected as double?(a nullable double).