Struct AnimationResult<T>
Assembly: Mapsui.dll
Syntax
public record struct AnimationResult<T> : IEquatable<AnimationResult<T>>
Type Parameters
Name |
Description |
T |
The type that the animation is changing over time.
|
Constructors
|
Edit this page
View Source
AnimationResult(T, bool)
Declaration
public AnimationResult(T State, bool IsRunning)
Parameters
Type |
Name |
Description |
T |
State |
|
bool |
IsRunning |
Will be false if the animation is cancelled.
|
Properties
|
Edit this page
View Source
IsRunning
Will be false if the animation is cancelled.
Declaration
public bool IsRunning { readonly get; set; }
Property Value
|
Edit this page
View Source
State
Declaration
public T State { readonly get; set; }
Property Value
Implements