Click to Rate and Give Feedback
MSDN
MSDN Library
Web Development
Silverlight 3
 To Property

  Switch on low bandwidth view
This page is specific to
Microsoft Silverlight 3

Other versions are also available for the following:
.NET Framework Class Library for Silverlight
DoubleAnimation..::.To Property

Gets or sets the animation's ending value.

Namespace:  System.Windows.Media.Animation
Assembly:  System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Property To As Nullable(Of Double)
    Get
    Set
Visual Basic (Usage)
Dim instance As DoubleAnimation
Dim value As Nullable(Of Double)

value = instance.To

instance.To = value
C#
public Nullable<double> To { get; set; }
XAML Attribute Usage
<DoubleAnimation To="Double"/>

Property Value

Type: System..::.Nullable<(Of <(Double>)>)
The ending value of the animation. The default is nullNothingnullptra null reference (Nothing in Visual Basic).

Dependency property identifier field: ToProperty

The following table summarizes how the From, To, and By properties can 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.

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

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker