Rotate3DTransitionStart Method
Starts the animation.
Namespace: Avalonia.AnimationAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public override Task Start(
Visual? from,
Visual? to,
bool forward,
CancellationToken cancellationToken
)
Public Overrides Function Start (
from As Visual,
to As Visual,
forward As Boolean,
cancellationToken As CancellationToken
) As Task
abstract Start :
from : Visual *
to : Visual *
forward : bool *
cancellationToken : CancellationToken -> Task
override Start :
from : Visual *
to : Visual *
forward : bool *
cancellationToken : CancellationToken -> Task
- from Visual
-
The control that is being transitioned away from. May be null.
- to Visual
-
The control that is being transitioned to. May be null.
- forward Boolean
-
If the animation is bidirectional, controls the direction of the animation.
- cancellationToken CancellationToken
-
Animation cancellation.
Task
A
Task that tracks the progress of the animation.
IPageTransitionStart(Visual, Visual, Boolean, CancellationToken)