In OnKeyDown how do I make the character ignored?

  • Thread starter Thread starter **Developer**
  • Start date Start date
D

**Developer**

I believe in the KeyDown event if I set e.Handled = True the character is
ignored and none of the other keyboard events or overrides will be called.
Is that true?

If in OnKeyDown I want to do the equivalent of setting e.Handled = True in
the KeyDown event, how do I do that?


Thanks in advance for any info
 
If you do not delagate to MyBase.KeyDown(e) the key press will not be seen by
the base class and therefore ignored.
 
Back
Top