ComponentFactory.Krypton.Ribbon.ButtonSpecAppButtonController.MatchMnemonic C# (CSharp) Method

MatchMnemonic() public method

Determine if the keys value matches the mnemonic setting for this target.
public MatchMnemonic ( char charCode ) : bool
charCode char Key code to test against.
return bool
        public bool MatchMnemonic(char charCode)
        {
            return Control.IsMnemonic(charCode, _target.ButtonValues.GetShortText());
        }