RectAnimation.From Property

Definition

Gets or sets the animation's starting value.

public:
 property Nullable<System::Windows::Rect> From { Nullable<System::Windows::Rect> get(); void set(Nullable<System::Windows::Rect> value); };
public System.Windows.Rect? From { get; set; }
member this.From : Nullable<System.Windows.Rect> with get, set
Public Property From As Nullable(Of Rect)

Property Value

The starting value of the animation. The default is null.

Remarks

The following table summarizes how the From, To, and By properties may be used together or separately to determine an animation's target values.

Properties specified Resulting behavior
From The animation progresses from the value specified by the From property to the base value of the property being animated or to a previous animation's output value, depending on how the previous animation is configured.
From and To The animation progresses from the value specified by the From property to the value specified by the To property.
From and By The animation progresses from the value specified by the From property to the value specified by the sum of the From and By properties.
To The animation progresses from the animated property's base value or a previous animation's output value to the value specified by the To property.
By The animation progresses from the base value of the property being animated or a previous animation's output value to the sum of that value and the value specified by the By property.

Note

If you set both the To and By properties, the To property takes precedence and the By property is ignored.

To use other interpolation methods or animate between more than two target values, use a RectAnimationUsingKeyFrames object.

XAML Attribute Usage

<object From="Rect"/>

-or-

<object From="{x:Null Markup Extension}"/>

XAML Property Element Usage

<object>

<object.From>

<Rect />

</object.From>

</object>

Dependency Property Information

Identifier field FromProperty
Metadata properties set to true None

Applies to

See also