AsciiKey.CharacterKeyMapping Struct
Definition
Section titled “Definition”Associates a character glyph and a Keys value.
public readonly struct AsciiKey.CharacterKeyMapping : IEquatable<AsciiKey.CharacterKeyMapping>Implements IEquatable<AsciiKey.CharacterKeyMapping>
Remarks
Section titled “Remarks”Used when the NumLock is active.
Constructors
Section titled “Constructors”CharacterKeyMapping(char, Keys)
Section titled “CharacterKeyMapping(char, Keys)”Associates a character glyph and a Keys value.
public CharacterKeyMapping(char CharacterGlyph, Keys Key)Parameters
Section titled “Parameters”CharacterGlyph char
The number pad character.
Key Keys
The key the character maps to.
Remarks
Section titled “Remarks”Used when the NumLock is active.
Properties
Section titled “Properties”CharacterGlyph
Section titled “CharacterGlyph”The number pad character.
public char CharacterGlyph { get; init; }The key the character maps to.
public Keys Key { get; init; }Methods
Section titled “Methods”ToString()
Section titled “ToString()”public override string ToString()Returns
Section titled “Returns”GetHashCode()
Section titled “GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”Equals(object)
Section titled “Equals(object)”public override bool Equals(object obj)Parameters
Section titled “Parameters”obj object
Returns
Section titled “Returns”Equals(CharacterKeyMapping)
Section titled “Equals(CharacterKeyMapping)”public bool Equals(AsciiKey.CharacterKeyMapping other)Parameters
Section titled “Parameters”other AsciiKey.CharacterKeyMapping
Returns
Section titled “Returns”Deconstruct(out char, out Keys)
Section titled “Deconstruct(out char, out Keys)”public void Deconstruct(out char CharacterGlyph, out Keys Key)Parameters
Section titled “Parameters”CharacterGlyph char
Key Keys