From (ColorAnimation)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets or sets the animation's starting value.

<object From="Color"  .../>
value = object.From
object.From = value

Property Value

Type: Color

The starting value of the animation.

This property is read/write. The default value is null.

Managed Equivalent

From

Remarks

See Color for details on the various string formats that can be used to specify a color either in XAML or script.

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 that is being animated.

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 that is being animated or a previous animation's output value to the sum of that value and the value specified by the By property.

NoteNote:

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 to animate between more than two target values, use a ColorAnimationUsingKeyFrames object.

Applies To

ColorAnimation