Int64Animation 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 Int64Animation class.
Overloads
Int64Animation() |
Initializes a new instance of the Int64Animation class. |
Int64Animation(Int64, Duration) |
Initializes a new instance of the Int64Animation class that animates to the specified value over the specified duration. The starting value for the animation is the base value of the property being animated or the output from another animation. |
Int64Animation(Int64, Int64, Duration) |
Initializes a new instance of the Int64Animation class that animates from the specified starting value to the specified destination value over the specified duration. |
Int64Animation(Int64, Duration, FillBehavior) |
Initializes a new instance of the Int64Animation 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. |
Int64Animation(Int64, Int64, Duration, FillBehavior) |
Initializes a new instance of the Int64Animation class that animates from the specified starting value to the specified destination value over the specified duration and has the specified fill behavior. |
Int64Animation()
Initializes a new instance of the Int64Animation class.
public:
Int64Animation();
public Int64Animation ();
Public Sub New ()
Applies to
Int64Animation(Int64, Duration)
Initializes a new instance of the Int64Animation class that animates to the specified value over the specified duration. The starting value for the animation is the base value of the property being animated or the output from another animation.
public:
Int64Animation(long toValue, System::Windows::Duration duration);
public Int64Animation (long toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.Int64Animation : int64 * System.Windows.Duration -> System.Windows.Media.Animation.Int64Animation
Public Sub New (toValue As Long, duration As Duration)
Parameters
- toValue
- Int64
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
Int64Animation(Int64, Int64, Duration)
Initializes a new instance of the Int64Animation class that animates from the specified starting value to the specified destination value over the specified duration.
public:
Int64Animation(long fromValue, long toValue, System::Windows::Duration duration);
public Int64Animation (long fromValue, long toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.Int64Animation : int64 * int64 * System.Windows.Duration -> System.Windows.Media.Animation.Int64Animation
Public Sub New (fromValue As Long, toValue As Long, duration As Duration)
Parameters
- fromValue
- Int64
The starting value of the animation.
- toValue
- Int64
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
Int64Animation(Int64, Duration, FillBehavior)
Initializes a new instance of the Int64Animation 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:
Int64Animation(long toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public Int64Animation (long toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.Int64Animation : int64 * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.Int64Animation
Public Sub New (toValue As Long, duration As Duration, fillBehavior As FillBehavior)
Parameters
- toValue
- Int64
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
Int64Animation(Int64, Int64, Duration, FillBehavior)
Initializes a new instance of the Int64Animation class that animates from the specified starting value to the specified destination value over the specified duration and has the specified fill behavior.
public:
Int64Animation(long fromValue, long toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public Int64Animation (long fromValue, long toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.Int64Animation : int64 * int64 * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.Int64Animation
Public Sub New (fromValue As Long, toValue As Long, duration As Duration, fillBehavior As FillBehavior)
Parameters
- fromValue
- Int64
The starting value of the animation.
- toValue
- Int64
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.