1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-20 06:05:46 +02:00
MLEM/Docs/api/MLEM.Ui.UiAnimation.yml

1227 lines
42 KiB
YAML
Raw Normal View History

### YamlMime:ManagedReference
items:
- uid: MLEM.Ui.UiAnimation
commentId: T:MLEM.Ui.UiAnimation
id: UiAnimation
parent: MLEM.Ui
children:
- MLEM.Ui.UiAnimation.#ctor(System.Double,MLEM.Ui.UiAnimation.AnimationFunction)
- MLEM.Ui.UiAnimation.#ctor(System.TimeSpan,MLEM.Ui.UiAnimation.AnimationFunction)
- MLEM.Ui.UiAnimation.CurrentTime
- MLEM.Ui.UiAnimation.Finished
- MLEM.Ui.UiAnimation.Function
- MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
- MLEM.Ui.UiAnimation.Started
- MLEM.Ui.UiAnimation.TotalTime
- MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
langs:
- csharp
- vb
name: UiAnimation
nameWithType: UiAnimation
fullName: MLEM.Ui.UiAnimation
type: Class
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: UiAnimation
path: ../MLEM.Ui/UiAnimation.cs
startLine: 10
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: >-
A ui animation is a simple timed event that an <xref href="MLEM.Ui.Elements.Element" data-throw-if-not-resolved="false"></xref> in a <xref href="MLEM.Ui.UiSystem" data-throw-if-not-resolved="false"></xref> can use to play a visual or other type of animation.
To use ui animations, you can use <xref href="MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)" data-throw-if-not-resolved="false"></xref>, or one of the built-in style properties like <xref href="MLEM.Ui.Elements.Element.MouseEnterAnimation" data-throw-if-not-resolved="false"></xref> or <xref href="MLEM.Ui.Elements.Element.MouseExitAnimation" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: 'public class UiAnimation : GenericDataHolder, IGenericDataHolder'
content.vb: Public Class UiAnimation Inherits GenericDataHolder Implements IGenericDataHolder
inheritance:
- System.Object
- MLEM.Misc.GenericDataHolder
implements:
- MLEM.Misc.IGenericDataHolder
inheritedMembers:
- MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
- MLEM.Misc.GenericDataHolder.GetData``1(System.String)
- MLEM.Misc.GenericDataHolder.GetDataKeys
- System.Object.ToString
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- uid: MLEM.Ui.UiAnimation.TotalTime
commentId: F:MLEM.Ui.UiAnimation.TotalTime
id: TotalTime
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: TotalTime
nameWithType: UiAnimation.TotalTime
fullName: MLEM.Ui.UiAnimation.TotalTime
type: Field
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: TotalTime
path: ../MLEM.Ui/UiAnimation.cs
startLine: 15
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: The total time that this ui animation plays for.
example: []
syntax:
content: public readonly TimeSpan TotalTime
return:
type: System.TimeSpan
content.vb: Public ReadOnly TotalTime As TimeSpan
- uid: MLEM.Ui.UiAnimation.Function
commentId: F:MLEM.Ui.UiAnimation.Function
id: Function
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: Function
nameWithType: UiAnimation.Function
fullName: MLEM.Ui.UiAnimation.Function
type: Field
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: Function
path: ../MLEM.Ui/UiAnimation.cs
startLine: 19
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: The <xref href="MLEM.Ui.UiAnimation.AnimationFunction" data-throw-if-not-resolved="false"></xref> that is invoked every <xref href="MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element%2cMicrosoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public readonly UiAnimation.AnimationFunction Function
return:
type: MLEM.Ui.UiAnimation.AnimationFunction
content.vb: Public ReadOnly [Function] As UiAnimation.AnimationFunction
- uid: MLEM.Ui.UiAnimation.Started
commentId: F:MLEM.Ui.UiAnimation.Started
id: Started
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: Started
nameWithType: UiAnimation.Started
fullName: MLEM.Ui.UiAnimation.Started
type: Field
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: Started
path: ../MLEM.Ui/UiAnimation.cs
startLine: 24
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: An event that is raised when this ui animation is (re)started in <xref href="MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element%2cMicrosoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public Action<UiAnimation, Element> Started
return:
type: System.Action{MLEM.Ui.UiAnimation,MLEM.Ui.Elements.Element}
content.vb: Public Started As Action(Of UiAnimation, Element)
- uid: MLEM.Ui.UiAnimation.Finished
commentId: F:MLEM.Ui.UiAnimation.Finished
id: Finished
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: Finished
nameWithType: UiAnimation.Finished
fullName: MLEM.Ui.UiAnimation.Finished
type: Field
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: Finished
path: ../MLEM.Ui/UiAnimation.cs
startLine: 28
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: An event that is raised when this ui animation is stopped or finished through <xref href="MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public Action<UiAnimation, Element> Finished
return:
type: System.Action{MLEM.Ui.UiAnimation,MLEM.Ui.Elements.Element}
content.vb: Public Finished As Action(Of UiAnimation, Element)
- uid: MLEM.Ui.UiAnimation.CurrentTime
commentId: P:MLEM.Ui.UiAnimation.CurrentTime
id: CurrentTime
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: CurrentTime
nameWithType: UiAnimation.CurrentTime
fullName: MLEM.Ui.UiAnimation.CurrentTime
type: Property
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: CurrentTime
path: ../MLEM.Ui/UiAnimation.cs
startLine: 32
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: The current time that this ui animation has been playing for, out of the <xref href="MLEM.Ui.UiAnimation.TotalTime" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public TimeSpan CurrentTime { get; }
parameters: []
return:
type: System.TimeSpan
content.vb: Public Property CurrentTime As TimeSpan
overload: MLEM.Ui.UiAnimation.CurrentTime*
- uid: MLEM.Ui.UiAnimation.#ctor(System.Double,MLEM.Ui.UiAnimation.AnimationFunction)
commentId: M:MLEM.Ui.UiAnimation.#ctor(System.Double,MLEM.Ui.UiAnimation.AnimationFunction)
id: '#ctor(System.Double,MLEM.Ui.UiAnimation.AnimationFunction)'
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: UiAnimation(double, AnimationFunction)
nameWithType: UiAnimation.UiAnimation(double, UiAnimation.AnimationFunction)
fullName: MLEM.Ui.UiAnimation.UiAnimation(double, MLEM.Ui.UiAnimation.AnimationFunction)
type: Constructor
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM.Ui/UiAnimation.cs
startLine: 39
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: Creates a new ui animation with the given settings.
example: []
syntax:
content: public UiAnimation(double seconds, UiAnimation.AnimationFunction function)
parameters:
- id: seconds
type: System.Double
description: The amount of seconds that this ui animation should play for.
- id: function
type: MLEM.Ui.UiAnimation.AnimationFunction
description: The <xref href="MLEM.Ui.UiAnimation.AnimationFunction" data-throw-if-not-resolved="false"></xref> that is invoked every <xref href="MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element%2cMicrosoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>.
content.vb: Public Sub New(seconds As Double, [function] As UiAnimation.AnimationFunction)
overload: MLEM.Ui.UiAnimation.#ctor*
nameWithType.vb: UiAnimation.New(Double, UiAnimation.AnimationFunction)
fullName.vb: MLEM.Ui.UiAnimation.New(Double, MLEM.Ui.UiAnimation.AnimationFunction)
name.vb: New(Double, AnimationFunction)
- uid: MLEM.Ui.UiAnimation.#ctor(System.TimeSpan,MLEM.Ui.UiAnimation.AnimationFunction)
commentId: M:MLEM.Ui.UiAnimation.#ctor(System.TimeSpan,MLEM.Ui.UiAnimation.AnimationFunction)
id: '#ctor(System.TimeSpan,MLEM.Ui.UiAnimation.AnimationFunction)'
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: UiAnimation(TimeSpan, AnimationFunction)
nameWithType: UiAnimation.UiAnimation(TimeSpan, UiAnimation.AnimationFunction)
fullName: MLEM.Ui.UiAnimation.UiAnimation(System.TimeSpan, MLEM.Ui.UiAnimation.AnimationFunction)
type: Constructor
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM.Ui/UiAnimation.cs
startLine: 46
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: Creates a new ui animation with the given settings.
example: []
syntax:
content: public UiAnimation(TimeSpan totalTime, UiAnimation.AnimationFunction function)
parameters:
- id: totalTime
type: System.TimeSpan
description: The <xref href="MLEM.Ui.UiAnimation.TotalTime" data-throw-if-not-resolved="false"></xref> that this ui animation should play for.
- id: function
type: MLEM.Ui.UiAnimation.AnimationFunction
description: The <xref href="MLEM.Ui.UiAnimation.AnimationFunction" data-throw-if-not-resolved="false"></xref> that is invoked every <xref href="MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element%2cMicrosoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>.
content.vb: Public Sub New(totalTime As TimeSpan, [function] As UiAnimation.AnimationFunction)
overload: MLEM.Ui.UiAnimation.#ctor*
nameWithType.vb: UiAnimation.New(TimeSpan, UiAnimation.AnimationFunction)
fullName.vb: MLEM.Ui.UiAnimation.New(System.TimeSpan, MLEM.Ui.UiAnimation.AnimationFunction)
name.vb: New(TimeSpan, AnimationFunction)
- uid: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
commentId: M:MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
id: Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: Update(Element, GameTime)
nameWithType: UiAnimation.Update(Element, GameTime)
fullName: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element, Microsoft.Xna.Framework.GameTime)
type: Method
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: Update
path: ../MLEM.Ui/UiAnimation.cs
startLine: 58
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: >-
Updates this ui animation, invoking its <xref href="MLEM.Ui.UiAnimation.Started" data-throw-if-not-resolved="false"></xref> event if necessary, increasing its <xref href="MLEM.Ui.UiAnimation.CurrentTime" data-throw-if-not-resolved="false"></xref> and invoking its <xref href="MLEM.Ui.UiAnimation.Function" data-throw-if-not-resolved="false"></xref>.
This method is called by an <xref href="MLEM.Ui.Elements.Element" data-throw-if-not-resolved="false"></xref> in <xref href="MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public virtual bool Update(Element element, GameTime time)
parameters:
- id: element
type: MLEM.Ui.Elements.Element
description: The element that this ui animation is attached to.
- id: time
type: Microsoft.Xna.Framework.GameTime
description: The game's current time.
return:
type: System.Boolean
description: Whether this animation is ready to finish, that is, if its <xref href="MLEM.Ui.UiAnimation.CurrentTime" data-throw-if-not-resolved="false"></xref> is greater than or equal to its <xref href="MLEM.Ui.UiAnimation.TotalTime" data-throw-if-not-resolved="false"></xref>.
content.vb: Public Overridable Function Update(element As Element, time As GameTime) As Boolean
overload: MLEM.Ui.UiAnimation.Update*
- uid: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
commentId: M:MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
id: OnFinished(MLEM.Ui.Elements.Element)
parent: MLEM.Ui.UiAnimation
langs:
- csharp
- vb
name: OnFinished(Element)
nameWithType: UiAnimation.OnFinished(Element)
fullName: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
type: Method
source:
remote:
path: MLEM.Ui/UiAnimation.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: OnFinished
path: ../MLEM.Ui/UiAnimation.cs
startLine: 74
assemblies:
- MLEM.Ui
namespace: MLEM.Ui
summary: >-
Causes this ui animation's <xref href="MLEM.Ui.UiAnimation.Finished" data-throw-if-not-resolved="false"></xref> event to be raised, and sets the <xref href="MLEM.Ui.UiAnimation.CurrentTime" data-throw-if-not-resolved="false"></xref> to <xref href="System.TimeSpan.Zero" data-throw-if-not-resolved="false"></xref>.
This allows the animation to play from the start again.
This method is invoked automatically when <xref href="MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element%2cMicrosoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> in <xref href="MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)" data-throw-if-not-resolved="false"></xref>, as well as in <xref href="MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public virtual void OnFinished(Element element)
parameters:
- id: element
type: MLEM.Ui.Elements.Element
description: ''
content.vb: Public Overridable Sub OnFinished(element As Element)
overload: MLEM.Ui.UiAnimation.OnFinished*
references:
- uid: MLEM.Ui.Elements.Element
commentId: T:MLEM.Ui.Elements.Element
parent: MLEM.Ui.Elements
href: MLEM.Ui.Elements.Element.html
name: Element
nameWithType: Element
fullName: MLEM.Ui.Elements.Element
- uid: MLEM.Ui.UiSystem
commentId: T:MLEM.Ui.UiSystem
parent: MLEM.Ui
href: MLEM.Ui.UiSystem.html
name: UiSystem
nameWithType: UiSystem
fullName: MLEM.Ui.UiSystem
- uid: MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)
commentId: M:MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)
parent: MLEM.Ui.Elements.Element
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_PlayAnimation_MLEM_Ui_UiAnimation_
name: PlayAnimation(UiAnimation)
nameWithType: Element.PlayAnimation(UiAnimation)
fullName: MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)
spec.csharp:
- uid: MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)
name: PlayAnimation
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_PlayAnimation_MLEM_Ui_UiAnimation_
- name: (
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: )
spec.vb:
- uid: MLEM.Ui.Elements.Element.PlayAnimation(MLEM.Ui.UiAnimation)
name: PlayAnimation
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_PlayAnimation_MLEM_Ui_UiAnimation_
- name: (
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: )
- uid: MLEM.Ui.Elements.Element.MouseEnterAnimation
commentId: F:MLEM.Ui.Elements.Element.MouseEnterAnimation
parent: MLEM.Ui.Elements.Element
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_MouseEnterAnimation
name: MouseEnterAnimation
nameWithType: Element.MouseEnterAnimation
fullName: MLEM.Ui.Elements.Element.MouseEnterAnimation
- uid: MLEM.Ui.Elements.Element.MouseExitAnimation
commentId: F:MLEM.Ui.Elements.Element.MouseExitAnimation
parent: MLEM.Ui.Elements.Element
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_MouseExitAnimation
name: MouseExitAnimation
nameWithType: Element.MouseExitAnimation
fullName: MLEM.Ui.Elements.Element.MouseExitAnimation
- uid: MLEM.Ui
commentId: N:MLEM.Ui
href: MLEM.html
name: MLEM.Ui
nameWithType: MLEM.Ui
fullName: MLEM.Ui
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Ui
name: Ui
href: MLEM.Ui.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Ui
name: Ui
href: MLEM.Ui.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: MLEM.Misc.GenericDataHolder
commentId: T:MLEM.Misc.GenericDataHolder
parent: MLEM.Misc
href: MLEM.Misc.GenericDataHolder.html
name: GenericDataHolder
nameWithType: GenericDataHolder
fullName: MLEM.Misc.GenericDataHolder
- uid: MLEM.Misc.IGenericDataHolder
commentId: T:MLEM.Misc.IGenericDataHolder
parent: MLEM.Misc
href: MLEM.Misc.IGenericDataHolder.html
name: IGenericDataHolder
nameWithType: IGenericDataHolder
fullName: MLEM.Misc.IGenericDataHolder
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
commentId: M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
parent: MLEM.Misc.GenericDataHolder
definition: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
name: SetData<T>(string, T)
nameWithType: GenericDataHolder.SetData<T>(string, T)
fullName: MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
nameWithType.vb: GenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
name: SetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
name: SetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId: M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent: MLEM.Misc.GenericDataHolder
isExternal: true
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetData__1_System_String_
name: GetData<T>(string)
nameWithType: GenericDataHolder.GetData<T>(string)
fullName: MLEM.Misc.GenericDataHolder.GetData<T>(string)
nameWithType.vb: GenericDataHolder.GetData(Of T)(String)
fullName.vb: MLEM.Misc.GenericDataHolder.GetData(Of T)(String)
name.vb: GetData(Of T)(String)
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name: GetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetData__1_System_String_
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name: GetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetData__1_System_String_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
commentId: M:MLEM.Misc.GenericDataHolder.GetDataKeys
parent: MLEM.Misc.GenericDataHolder
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetDataKeys
name: GetDataKeys()
nameWithType: GenericDataHolder.GetDataKeys()
fullName: MLEM.Misc.GenericDataHolder.GetDataKeys()
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
name: GetDataKeys
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetDataKeys
- name: (
- name: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
name: GetDataKeys
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_GetDataKeys
- name: (
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: MLEM.Ui.Elements
commentId: N:MLEM.Ui.Elements
href: MLEM.html
name: MLEM.Ui.Elements
nameWithType: MLEM.Ui.Elements
fullName: MLEM.Ui.Elements
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Ui
name: Ui
href: MLEM.Ui.html
- name: .
- uid: MLEM.Ui.Elements
name: Elements
href: MLEM.Ui.Elements.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Ui
name: Ui
href: MLEM.Ui.html
- name: .
- uid: MLEM.Ui.Elements
name: Elements
href: MLEM.Ui.Elements.html
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: MLEM.Misc
commentId: N:MLEM.Misc
href: MLEM.html
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Misc
name: Misc
href: MLEM.Misc.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Misc
name: Misc
href: MLEM.Misc.html
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
commentId: M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
isExternal: true
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
name: SetData<T>(string, T)
nameWithType: GenericDataHolder.SetData<T>(string, T)
fullName: MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
nameWithType.vb: GenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
name: SetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
name: SetData
href: MLEM.Misc.GenericDataHolder.html#MLEM_Misc_GenericDataHolder_SetData__1_System_String___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- uid: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: MLEM.Ui.UiAnimation.AnimationFunction
commentId: T:MLEM.Ui.UiAnimation.AnimationFunction
parent: MLEM.Ui
href: MLEM.Ui.UiAnimation.html
name: UiAnimation.AnimationFunction
nameWithType: UiAnimation.AnimationFunction
fullName: MLEM.Ui.UiAnimation.AnimationFunction
spec.csharp:
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: .
- uid: MLEM.Ui.UiAnimation.AnimationFunction
name: AnimationFunction
href: MLEM.Ui.UiAnimation.AnimationFunction.html
spec.vb:
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: .
- uid: MLEM.Ui.UiAnimation.AnimationFunction
name: AnimationFunction
href: MLEM.Ui.UiAnimation.AnimationFunction.html
- uid: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
commentId: M:MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
isExternal: true
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Update_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_
name: Update(Element, GameTime)
nameWithType: UiAnimation.Update(Element, GameTime)
fullName: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element, Microsoft.Xna.Framework.GameTime)
spec.csharp:
- uid: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
name: Update
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Update_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_
- name: (
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: )
spec.vb:
- uid: MLEM.Ui.UiAnimation.Update(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime)
name: Update
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Update_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_
- name: (
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: )
- uid: System.Action{MLEM.Ui.UiAnimation,MLEM.Ui.Elements.Element}
commentId: T:System.Action{MLEM.Ui.UiAnimation,MLEM.Ui.Elements.Element}
parent: System
definition: System.Action`2
href: https://learn.microsoft.com/dotnet/api/system.action-2
name: Action<UiAnimation, Element>
nameWithType: Action<UiAnimation, Element>
fullName: System.Action<MLEM.Ui.UiAnimation, MLEM.Ui.Elements.Element>
nameWithType.vb: Action(Of UiAnimation, Element)
fullName.vb: System.Action(Of MLEM.Ui.UiAnimation, MLEM.Ui.Elements.Element)
name.vb: Action(Of UiAnimation, Element)
spec.csharp:
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: <
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: '>'
spec.vb:
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: (
- name: Of
- name: " "
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: )
- uid: System.Action`2
commentId: T:System.Action`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
name: Action<T1, T2>
nameWithType: Action<T1, T2>
fullName: System.Action<T1, T2>
nameWithType.vb: Action(Of T1, T2)
fullName.vb: System.Action(Of T1, T2)
name.vb: Action(Of T1, T2)
spec.csharp:
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: <
- name: T1
- name: ','
- name: " "
- name: T2
- name: '>'
spec.vb:
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: (
- name: Of
- name: " "
- name: T1
- name: ','
- name: " "
- name: T2
- name: )
- uid: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
commentId: M:MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_OnFinished_MLEM_Ui_Elements_Element_
name: OnFinished(Element)
nameWithType: UiAnimation.OnFinished(Element)
fullName: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
spec.csharp:
- uid: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
name: OnFinished
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_OnFinished_MLEM_Ui_Elements_Element_
- name: (
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: )
spec.vb:
- uid: MLEM.Ui.UiAnimation.OnFinished(MLEM.Ui.Elements.Element)
name: OnFinished
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_OnFinished_MLEM_Ui_Elements_Element_
- name: (
- uid: MLEM.Ui.Elements.Element
name: Element
href: MLEM.Ui.Elements.Element.html
- name: )
- uid: MLEM.Ui.UiAnimation.TotalTime
commentId: F:MLEM.Ui.UiAnimation.TotalTime
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_TotalTime
name: TotalTime
nameWithType: UiAnimation.TotalTime
fullName: MLEM.Ui.UiAnimation.TotalTime
- uid: MLEM.Ui.UiAnimation.CurrentTime*
commentId: Overload:MLEM.Ui.UiAnimation.CurrentTime
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_CurrentTime
name: CurrentTime
nameWithType: UiAnimation.CurrentTime
fullName: MLEM.Ui.UiAnimation.CurrentTime
- uid: MLEM.Ui.UiAnimation.#ctor*
commentId: Overload:MLEM.Ui.UiAnimation.#ctor
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation__ctor_System_Double_MLEM_Ui_UiAnimation_AnimationFunction_
name: UiAnimation
nameWithType: UiAnimation.UiAnimation
fullName: MLEM.Ui.UiAnimation.UiAnimation
nameWithType.vb: UiAnimation.New
fullName.vb: MLEM.Ui.UiAnimation.New
name.vb: New
- uid: System.Double
commentId: T:System.Double
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.double
name: double
nameWithType: double
fullName: double
nameWithType.vb: Double
fullName.vb: Double
name.vb: Double
- uid: MLEM.Ui.UiAnimation.Started
commentId: F:MLEM.Ui.UiAnimation.Started
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Started
name: Started
nameWithType: UiAnimation.Started
fullName: MLEM.Ui.UiAnimation.Started
- uid: MLEM.Ui.UiAnimation.CurrentTime
commentId: P:MLEM.Ui.UiAnimation.CurrentTime
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_CurrentTime
name: CurrentTime
nameWithType: UiAnimation.CurrentTime
fullName: MLEM.Ui.UiAnimation.CurrentTime
- uid: MLEM.Ui.UiAnimation.Function
commentId: F:MLEM.Ui.UiAnimation.Function
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Function
name: Function
nameWithType: UiAnimation.Function
fullName: MLEM.Ui.UiAnimation.Function
- uid: MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)
commentId: M:MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)
parent: MLEM.Ui.Elements.Element
isExternal: true
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_Update_Microsoft_Xna_Framework_GameTime_
name: Update(GameTime)
nameWithType: Element.Update(GameTime)
fullName: MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)
spec.csharp:
- uid: MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)
name: Update
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_Update_Microsoft_Xna_Framework_GameTime_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: )
spec.vb:
- uid: MLEM.Ui.Elements.Element.Update(Microsoft.Xna.Framework.GameTime)
name: Update
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_Update_Microsoft_Xna_Framework_GameTime_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: )
- uid: MLEM.Ui.UiAnimation.Update*
commentId: Overload:MLEM.Ui.UiAnimation.Update
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Update_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_
name: Update
nameWithType: UiAnimation.Update
fullName: MLEM.Ui.UiAnimation.Update
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
isExternal: true
name: GameTime
nameWithType: GameTime
fullName: Microsoft.Xna.Framework.GameTime
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- uid: MLEM.Ui.UiAnimation.Finished
commentId: F:MLEM.Ui.UiAnimation.Finished
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_Finished
name: Finished
nameWithType: UiAnimation.Finished
fullName: MLEM.Ui.UiAnimation.Finished
- uid: System.TimeSpan.Zero
commentId: F:System.TimeSpan.Zero
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan.zero
name: Zero
nameWithType: TimeSpan.Zero
fullName: System.TimeSpan.Zero
- uid: MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)
commentId: M:MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)
parent: MLEM.Ui.Elements.Element
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_StopAnimation_MLEM_Ui_UiAnimation_
name: StopAnimation(UiAnimation)
nameWithType: Element.StopAnimation(UiAnimation)
fullName: MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)
spec.csharp:
- uid: MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)
name: StopAnimation
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_StopAnimation_MLEM_Ui_UiAnimation_
- name: (
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: )
spec.vb:
- uid: MLEM.Ui.Elements.Element.StopAnimation(MLEM.Ui.UiAnimation)
name: StopAnimation
href: MLEM.Ui.Elements.Element.html#MLEM_Ui_Elements_Element_StopAnimation_MLEM_Ui_UiAnimation_
- name: (
- uid: MLEM.Ui.UiAnimation
name: UiAnimation
href: MLEM.Ui.UiAnimation.html
- name: )
- uid: MLEM.Ui.UiAnimation.OnFinished*
commentId: Overload:MLEM.Ui.UiAnimation.OnFinished
href: MLEM.Ui.UiAnimation.html#MLEM_Ui_UiAnimation_OnFinished_MLEM_Ui_Elements_Element_
name: OnFinished
nameWithType: UiAnimation.OnFinished
fullName: MLEM.Ui.UiAnimation.OnFinished