It's the KetData property of the KeyEventArgs. I don't know if you get the
KeyEventArgs parameter on a KeyPress, check out the KeyDown or KeyUp events
instead.
void Control_KeyDown(Object sender , KeyEventArgs e) {
if (e.KeyData == Keys.Delete) {...}
}