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