DoubleAnimation.From Property

Definition

Gets or sets the animation's starting value.

public:
 property IReference<double> ^ From { IReference<double> ^ get(); void set(IReference<double> ^ value); };
IReference<double> From();

void From(IReference<double> value);
public System.Nullable<double> From { get; set; }
var iReference = doubleAnimation.from;
doubleAnimation.from = iReference;
Public Property From As Nullable(Of Double)
<DoubleAnimation From="double"/>

Property Value

The starting 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