2020-05-21 01:08:36 +02:00
### YamlMime:ManagedReference
items :
- uid : MLEM.Input.KeysExtensions
commentId : T:MLEM.Input.KeysExtensions
id : KeysExtensions
parent : MLEM.Input
children :
- MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
- MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
- MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
- MLEM.Input.KeysExtensions.ModifierKeys
langs :
- csharp
- vb
name : KeysExtensions
nameWithType : KeysExtensions
fullName : MLEM.Input.KeysExtensions
type : Class
source :
remote :
path : MLEM/Input/KeysExtensions.cs
branch : master
repo : https://github.com/Ellpeck/MLEM
id : KeysExtensions
path : ../MLEM/Input/KeysExtensions.cs
2020-05-21 23:19:16 +02:00
startLine : 9
2020-05-21 01:08:36 +02:00
assemblies :
- MLEM
namespace : MLEM.Input
2020-05-21 23:19:16 +02:00
summary : "\nA set of extension methods for dealing with <xref href=\"Microsoft.Xna.Framework.Input.Keys\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"Microsoft.Xna.Framework.Input.Keyboard\" data-throw-if-not-resolved=\"false\"></xref>\n"
example : [ ]
2020-05-21 01:08:36 +02:00
syntax :
content : public static class KeysExtensions
content.vb : Public Module KeysExtensions
inheritance :
- System.Object
inheritedMembers :
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
modifiers.csharp :
- public
- static
- class
modifiers.vb :
- Public
- Module
- uid : MLEM.Input.KeysExtensions.ModifierKeys
commentId : F:MLEM.Input.KeysExtensions.ModifierKeys
id : ModifierKeys
parent : MLEM.Input.KeysExtensions
langs :
- csharp
- vb
name : ModifierKeys
nameWithType : KeysExtensions.ModifierKeys
fullName : MLEM.Input.KeysExtensions.ModifierKeys
type : Field
source :
remote :
path : MLEM/Input/KeysExtensions.cs
branch : master
repo : https://github.com/Ellpeck/MLEM
id : ModifierKeys
path : ../MLEM/Input/KeysExtensions.cs
2020-05-21 23:19:16 +02:00
startLine : 14
2020-05-21 01:08:36 +02:00
assemblies :
- MLEM
namespace : MLEM.Input
2020-05-21 23:19:16 +02:00
summary : "\nAll enum values of <xref href=\"MLEM.Input.ModifierKey\" data-throw-if-not-resolved=\"false\"></xref>\n"
example : [ ]
2020-05-21 01:08:36 +02:00
syntax :
content : public static readonly ModifierKey[] ModifierKeys
return :
type : MLEM.Input.ModifierKey[]
content.vb : Public Shared ReadOnly ModifierKeys As ModifierKey()
modifiers.csharp :
- public
- static
- readonly
modifiers.vb :
- Public
- Shared
- ReadOnly
- uid : MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
commentId : M:MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
id : GetKeys(MLEM.Input.ModifierKey)
isExtensionMethod : true
parent : MLEM.Input.KeysExtensions
langs :
- csharp
- vb
name : GetKeys(ModifierKey)
nameWithType : KeysExtensions.GetKeys(ModifierKey)
fullName : MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
type : Method
source :
remote :
path : MLEM/Input/KeysExtensions.cs
branch : master
repo : https://github.com/Ellpeck/MLEM
id : GetKeys
path : ../MLEM/Input/KeysExtensions.cs
2020-05-21 23:19:16 +02:00
startLine : 21
2020-05-21 01:08:36 +02:00
assemblies :
- MLEM
namespace : MLEM.Input
2020-05-21 23:19:16 +02:00
summary : "\nReturns all of the keys that the given modifier key represents\n"
example : [ ]
2020-05-21 01:08:36 +02:00
syntax :
content : public static IEnumerable<Keys> GetKeys(this ModifierKey modifier)
parameters :
- id : modifier
type : MLEM.Input.ModifierKey
2020-05-21 23:19:16 +02:00
description : The modifier key
2020-05-21 01:08:36 +02:00
return :
type : System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
2020-05-21 23:19:16 +02:00
description : All of the keys the modifier key represents
2020-05-21 01:08:36 +02:00
content.vb : >-
<ExtensionAttribute>
Public Shared Function GetKeys(modifier As ModifierKey) As IEnumerable(Of Keys)
overload : MLEM.Input.KeysExtensions.GetKeys*
modifiers.csharp :
- public
- static
modifiers.vb :
- Public
- Shared
- uid : MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
commentId : M:MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
id : GetModifier(Microsoft.Xna.Framework.Input.Keys)
isExtensionMethod : true
parent : MLEM.Input.KeysExtensions
langs :
- csharp
- vb
name : GetModifier(Keys)
nameWithType : KeysExtensions.GetModifier(Keys)
fullName : MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
type : Method
source :
remote :
path : MLEM/Input/KeysExtensions.cs
branch : master
repo : https://github.com/Ellpeck/MLEM
id : GetModifier
path : ../MLEM/Input/KeysExtensions.cs
2020-05-21 23:19:16 +02:00
startLine : 44
2020-05-21 01:08:36 +02:00
assemblies :
- MLEM
namespace : MLEM.Input
2020-05-21 23:19:16 +02:00
summary : "\nReturns the modifier key that the given key represents.\nIf there is no matching modifier key, <xref href=\"MLEM.Input.ModifierKey.None\" data-throw-if-not-resolved=\"false\"></xref> is returned.\n"
example : [ ]
2020-05-21 01:08:36 +02:00
syntax :
content : public static ModifierKey GetModifier(this Keys key)
parameters :
- id : key
type : Microsoft.Xna.Framework.Input.Keys
2020-05-21 23:19:16 +02:00
description : The key to convert to a modifier key
2020-05-21 01:08:36 +02:00
return :
type : MLEM.Input.ModifierKey
2020-05-21 23:19:16 +02:00
description : The modifier key, or <xref href="MLEM.Input.ModifierKey.None" data-throw-if-not-resolved="false"></xref>
2020-05-21 01:08:36 +02:00
content.vb : >-
<ExtensionAttribute>
Public Shared Function GetModifier(key As Keys) As ModifierKey
overload : MLEM.Input.KeysExtensions.GetModifier*
modifiers.csharp :
- public
- static
modifiers.vb :
- Public
- Shared
- uid : MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
commentId : M:MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
id : IsModifier(Microsoft.Xna.Framework.Input.Keys)
isExtensionMethod : true
parent : MLEM.Input.KeysExtensions
langs :
- csharp
- vb
name : IsModifier(Keys)
nameWithType : KeysExtensions.IsModifier(Keys)
fullName : MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
type : Method
source :
remote :
path : MLEM/Input/KeysExtensions.cs
branch : master
repo : https://github.com/Ellpeck/MLEM
id : IsModifier
path : ../MLEM/Input/KeysExtensions.cs
2020-05-21 23:19:16 +02:00
startLine : 57
2020-05-21 01:08:36 +02:00
assemblies :
- MLEM
namespace : MLEM.Input
2020-05-21 23:19:16 +02:00
summary : "\nReturns whether the given key is a modifier key or not.\n"
example : [ ]
2020-05-21 01:08:36 +02:00
syntax :
content : public static bool IsModifier(this Keys key)
parameters :
- id : key
type : Microsoft.Xna.Framework.Input.Keys
2020-05-21 23:19:16 +02:00
description : The key
2020-05-21 01:08:36 +02:00
return :
type : System.Boolean
2020-05-21 23:19:16 +02:00
description : If the key is a modifier key
2020-05-21 01:08:36 +02:00
content.vb : >-
<ExtensionAttribute>
Public Shared Function IsModifier(key As Keys) As Boolean
overload : MLEM.Input.KeysExtensions.IsModifier*
modifiers.csharp :
- public
- static
modifiers.vb :
- Public
- Shared
references :
2020-05-21 23:19:16 +02:00
- uid : Microsoft.Xna.Framework.Input.Keys
commentId : T:Microsoft.Xna.Framework.Input.Keys
parent : Microsoft.Xna.Framework.Input
isExternal : true
name : Keys
nameWithType : Keys
fullName : Microsoft.Xna.Framework.Input.Keys
- uid : Microsoft.Xna.Framework.Input.Keyboard
commentId : T:Microsoft.Xna.Framework.Input.Keyboard
isExternal : true
2020-05-21 01:08:36 +02:00
- uid : MLEM.Input
commentId : N : MLEM.Input
name : MLEM.Input
nameWithType : MLEM.Input
fullName : MLEM.Input
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
name : Object
nameWithType : Object
fullName : System.Object
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
name : Equals(Object)
nameWithType : Object.Equals(Object)
fullName : System.Object.Equals(System.Object)
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
name : Equals(Object, Object)
nameWithType : Object.Equals(Object, Object)
fullName : System.Object.Equals(System.Object, System.Object)
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
name : GetHashCode()
nameWithType : Object.GetHashCode()
fullName : System.Object.GetHashCode()
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
nameWithType : Object.GetHashCode
fullName : System.Object.GetHashCode
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
nameWithType : Object.GetHashCode
fullName : System.Object.GetHashCode
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
name : GetType()
nameWithType : Object.GetType()
fullName : System.Object.GetType()
spec.csharp :
- uid : System.Object.GetType
name : GetType
nameWithType : Object.GetType
fullName : System.Object.GetType
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.GetType
name : GetType
nameWithType : Object.GetType
fullName : System.Object.GetType
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
name : MemberwiseClone()
nameWithType : Object.MemberwiseClone()
fullName : System.Object.MemberwiseClone()
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
nameWithType : Object.MemberwiseClone
fullName : System.Object.MemberwiseClone
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
nameWithType : Object.MemberwiseClone
fullName : System.Object.MemberwiseClone
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
name : ReferenceEquals(Object, Object)
nameWithType : Object.ReferenceEquals(Object, Object)
fullName : System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
nameWithType : Object.ReferenceEquals
fullName : System.Object.ReferenceEquals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
nameWithType : Object.ReferenceEquals
fullName : System.Object.ReferenceEquals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
name : ToString()
nameWithType : Object.ToString()
fullName : System.Object.ToString()
spec.csharp :
- uid : System.Object.ToString
name : ToString
nameWithType : Object.ToString
fullName : System.Object.ToString
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.ToString
name : ToString
nameWithType : Object.ToString
fullName : System.Object.ToString
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
2020-05-21 23:19:16 +02:00
- uid : Microsoft.Xna.Framework.Input
commentId : N : Microsoft.Xna.Framework.Input
isExternal : true
name : Microsoft.Xna.Framework.Input
nameWithType : Microsoft.Xna.Framework.Input
fullName : Microsoft.Xna.Framework.Input
2020-05-21 01:08:36 +02:00
- uid : System
commentId : N : System
isExternal : true
name : System
nameWithType : System
fullName : System
2020-05-21 23:19:16 +02:00
- uid : MLEM.Input.ModifierKey
commentId : T:MLEM.Input.ModifierKey
parent : MLEM.Input
name : ModifierKey
nameWithType : ModifierKey
fullName : MLEM.Input.ModifierKey
2020-05-21 01:08:36 +02:00
- uid : MLEM.Input.ModifierKey[]
isExternal : true
name : ModifierKey[]
nameWithType : ModifierKey[]
fullName : MLEM.Input.ModifierKey[]
nameWithType.vb : ModifierKey()
fullName.vb : MLEM.Input.ModifierKey()
name.vb : ModifierKey()
spec.csharp :
- uid : MLEM.Input.ModifierKey
name : ModifierKey
nameWithType : ModifierKey
fullName : MLEM.Input.ModifierKey
- name : '[]'
nameWithType : '[]'
fullName : '[]'
spec.vb :
- uid : MLEM.Input.ModifierKey
name : ModifierKey
nameWithType : ModifierKey
fullName : MLEM.Input.ModifierKey
- name : ()
nameWithType : ()
fullName : ()
- uid : MLEM.Input.KeysExtensions.GetKeys*
commentId : Overload:MLEM.Input.KeysExtensions.GetKeys
name : GetKeys
nameWithType : KeysExtensions.GetKeys
fullName : MLEM.Input.KeysExtensions.GetKeys
- uid : System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
commentId : T:System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
name : IEnumerable<Keys>
nameWithType : IEnumerable<Keys>
fullName : System.Collections.Generic.IEnumerable<Microsoft.Xna.Framework.Input.Keys>
nameWithType.vb : IEnumerable(Of Keys)
fullName.vb : System.Collections.Generic.IEnumerable(Of Microsoft.Xna.Framework.Input.Keys)
name.vb : IEnumerable(Of Keys)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
nameWithType : IEnumerable
fullName : System.Collections.Generic.IEnumerable
isExternal : true
- name : <
nameWithType : <
fullName : <
- uid : Microsoft.Xna.Framework.Input.Keys
name : Keys
nameWithType : Keys
fullName : Microsoft.Xna.Framework.Input.Keys
isExternal : true
- name : '>'
nameWithType : '>'
fullName : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
nameWithType : IEnumerable
fullName : System.Collections.Generic.IEnumerable
isExternal : true
- name : '(Of '
nameWithType : '(Of '
fullName : '(Of '
- uid : Microsoft.Xna.Framework.Input.Keys
name : Keys
nameWithType : Keys
fullName : Microsoft.Xna.Framework.Input.Keys
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
nameWithType.vb : IEnumerable(Of T)
fullName.vb : System.Collections.Generic.IEnumerable(Of T)
name.vb : IEnumerable(Of T)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
nameWithType : IEnumerable
fullName : System.Collections.Generic.IEnumerable
isExternal : true
- name : <
nameWithType : <
fullName : <
- name : T
nameWithType : T
fullName : T
- name : '>'
nameWithType : '>'
fullName : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
nameWithType : IEnumerable
fullName : System.Collections.Generic.IEnumerable
isExternal : true
- name : '(Of '
nameWithType : '(Of '
fullName : '(Of '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2020-05-21 23:19:16 +02:00
- uid : MLEM.Input.ModifierKey.None
commentId : F:MLEM.Input.ModifierKey.None
isExternal : true
2020-05-21 01:08:36 +02:00
- uid : MLEM.Input.KeysExtensions.GetModifier*
commentId : Overload:MLEM.Input.KeysExtensions.GetModifier
name : GetModifier
nameWithType : KeysExtensions.GetModifier
fullName : MLEM.Input.KeysExtensions.GetModifier
- uid : MLEM.Input.KeysExtensions.IsModifier*
commentId : Overload:MLEM.Input.KeysExtensions.IsModifier
name : IsModifier
nameWithType : KeysExtensions.IsModifier
fullName : MLEM.Input.KeysExtensions.IsModifier
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
name : Boolean
nameWithType : Boolean
fullName : System.Boolean