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);
        }
    }