DoubleAnimation.To Property

Definition

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).

Applies to