Artemis.DeviceProviders.Razer.BlackWidow.GetKeyPosition C# (CSharp) Метод

GetKeyPosition() публичный Метод

public GetKeyPosition ( Keys keyCode ) : KeyMatch?
keyCode Keys
Результат KeyMatch?
        public override KeyMatch? GetKeyPosition(Keys keyCode)
        {
            // TODO: Needs it's own keymap or a way to get it from the Chroma SDK
            return KeyMap.QwertyLayout.FirstOrDefault(k => k.KeyCode == keyCode);
        }
    }