Struct AnimationResult<T>
Implements
Inherited Members
Namespace: Mapsui.Animations
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 SourceAnimationResult(T, bool)
Declaration
public AnimationResult(T State, bool IsRunning)Parameters
| Type | Name | Description | 
|---|---|---|
| T | State | The state of the object that is animated after the current update. | 
| bool | IsRunning | Will be false if the animation is cancelled. | 
Properties
| Edit this page View SourceIsRunning
Will be false if the animation is cancelled.
Declaration
public bool IsRunning { readonly get; set; }Property Value
| Type | Description | 
|---|---|
| bool | 
State
The state of the object that is animated after the current update.
Declaration
public T State { readonly get; set; }Property Value
| Type | Description | 
|---|---|
| T |