Vector3DAnimation Constructors
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.
Initializes a new instance of the Vector3DAnimation class.
Overloads
Vector3DAnimation() |
Initializes a new instance of the Vector3DAnimation class. |
Vector3DAnimation(Vector3D, Duration) |
Initializes a new instance of the Vector3DAnimation class with the specified destination value and Duration. |
Vector3DAnimation(Vector3D, Duration, FillBehavior) |
Initializes a new instance of the Vector3DAnimation class that animates to the specified value over the specified duration and has the specified fill behavior. The starting value for the animation is the base value of the property being animated or the output from another animation. |
Vector3DAnimation(Vector3D, Vector3D, Duration) |
Initializes a new instance of the Vector3DAnimation class that animates from the specified starting value to the specified destination value over the specified duration. |
Vector3DAnimation(Vector3D, Vector3D, Duration, FillBehavior) |
Initializes a new instance of the Vector3DAnimation class that animates from the specified starting value to the specified destination value over the specified duration and has the specified fill behavior. |
Vector3DAnimation()
Initializes a new instance of the Vector3DAnimation class.
public:
Vector3DAnimation();
public Vector3DAnimation ();
Public Sub New ()
Remarks
The Vector3Danimation is created with all properties set to their default value.
Applies to
Vector3DAnimation(Vector3D, Duration)
Initializes a new instance of the Vector3DAnimation class with the specified destination value and Duration.
public:
Vector3DAnimation(System::Windows::Media::Media3D::Vector3D toValue, System::Windows::Duration duration);
public Vector3DAnimation (System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.Vector3DAnimation : System.Windows.Media.Media3D.Vector3D * System.Windows.Duration -> System.Windows.Media.Animation.Vector3DAnimation
Public Sub New (toValue As Vector3D, duration As Duration)
Parameters
- toValue
- Vector3D
The ending value of this animation.
Applies to
Vector3DAnimation(Vector3D, Duration, FillBehavior)
Initializes a new instance of the Vector3DAnimation class that animates to the specified value over the specified duration and has the specified fill behavior. The starting value for the animation is the base value of the property being animated or the output from another animation.
public:
Vector3DAnimation(System::Windows::Media::Media3D::Vector3D toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public Vector3DAnimation (System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.Vector3DAnimation : System.Windows.Media.Media3D.Vector3D * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.Vector3DAnimation
Public Sub New (toValue As Vector3D, duration As Duration, fillBehavior As FillBehavior)
Parameters
- toValue
- Vector3D
The destination value of the animation.
- duration
- Duration
The length of time the animation takes to play from start to finish, once. See the Duration property for more information.
- fillBehavior
- FillBehavior
Specifies how the animation behaves when it is not active.
Applies to
Vector3DAnimation(Vector3D, Vector3D, Duration)
Initializes a new instance of the Vector3DAnimation class that animates from the specified starting value to the specified destination value over the specified duration.
public:
Vector3DAnimation(System::Windows::Media::Media3D::Vector3D fromValue, System::Windows::Media::Media3D::Vector3D toValue, System::Windows::Duration duration);
public Vector3DAnimation (System.Windows.Media.Media3D.Vector3D fromValue, System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.Vector3DAnimation : System.Windows.Media.Media3D.Vector3D * System.Windows.Media.Media3D.Vector3D * System.Windows.Duration -> System.Windows.Media.Animation.Vector3DAnimation
Public Sub New (fromValue As Vector3D, toValue As Vector3D, duration As Duration)
Parameters
- fromValue
- Vector3D
The starting value of the animation.
- toValue
- Vector3D
The destination value of the animation.
- duration
- Duration
The length of time the animation takes to play from start to finish, once. See the Duration property for more information.
Applies to
Vector3DAnimation(Vector3D, Vector3D, Duration, FillBehavior)
Initializes a new instance of the Vector3DAnimation class that animates from the specified starting value to the specified destination value over the specified duration and has the specified fill behavior.
public:
Vector3DAnimation(System::Windows::Media::Media3D::Vector3D fromValue, System::Windows::Media::Media3D::Vector3D toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public Vector3DAnimation (System.Windows.Media.Media3D.Vector3D fromValue, System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.Vector3DAnimation : System.Windows.Media.Media3D.Vector3D * System.Windows.Media.Media3D.Vector3D * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.Vector3DAnimation
Public Sub New (fromValue As Vector3D, toValue As Vector3D, duration As Duration, fillBehavior As FillBehavior)
Parameters
- fromValue
- Vector3D
The starting value of the animation.
- toValue
- Vector3D
The destination value of the animation.
- duration
- Duration
The length of time the animation takes to play from start to finish, once. See the Duration property for more information.
- fillBehavior
- FillBehavior
Specifies how the animation behaves when it is not active.