DoubleAnimation.By Property

Definition

Gets or sets the total amount by which the animation changes its starting value.

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

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

Property Value

The total amount by which the animation changes its starting value. 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