There is no repeat count because KeyDown and KeyUp only occur once for the activation and release of the key, respectively.
Compare this to the KeyPress event. The KeyPress event will be called once for each repetition.
> but I can speed things up if I know how many times the key has repeated.
You are probably going to need to keep track of what clock times keys have been recently pressed. You can then compare against this information when making decisions.