Can I determine if a KeyEventArg is an letter or number?

22.1k Views Asked by At

Is there a way to determine if a key is letter/number (A-Z,0-9) in the KeyEventArgs? Or do I have to make it myself? I found a way with e.KeyCode, is that accurate?

if(((e.KeyCode >= Keys.A       && e.KeyCode <= Keys.Z )
 || (e.KeyCode >= Keys.D0      && e.KeyCode <= Keys.D9 )
 || (e.KeyCode >= Keys.NumPad0 && e.KeyCode <= Keys.NumPad9))
4

There are 4 best solutions below

2
On BEST ANSWER

You can use the char.IsLetterOrDigit() method on the KeyCode of the event args:

bool isLetterOrDigit = char.IsLetterOrDigit((char) keyEventArgs.KeyCode);
0
On

In WPF? Use PreviewTextInput or TextInput events instead of KeyDown

2
On
0
On

Char.IsLetter() accepts some of OEM key codes that was treated as alphabetical characters.

My case was when I typed a keyboard (tilde) then this Keycode was returned OEM3.

I inspected the value (tilde) and it says

"192 'A'"

But actual typing 'A' was

"65 'A'"

As a result, both passed Char.IsLetter() as True.

To avoid this, I put below code.

private bool IsAlphabetOrDigit(System.Windows.Forms.KeyEventArgs e)
{
    var keyCode = (char)e.KeyCode;
    if ( false == char.IsNumber( keyCode ) &&  false == ((keyCode >= 'a' && keyCode <= 'z') || (keyCode >= 'A' && keyCode <= 'Z')))
    {
        return false;
    }

    return true;
}