I am trying to do an keypress event that only allows numbers, backspace, and enter. I have the part that only allows numbers

Code:
If Not (IsNumeric(e.KeyChar)) Then
            e.Handled = True
        End If
I need to know how to know what keychar the backspace and enter are. Can someone give me a reference?