'Declaration Public Event KeyDown As KeyEventHandler
'Usage Dim instance As DropDownEditor Dim handler As KeyEventHandler AddHandler instance.KeyDown, handler
public event KeyEventHandler KeyDown
Event Data
The event handler receives an argument of type KeyEventArgs containing data related to this event. The following KeyEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Alt | |
Control | |
Handled | |
KeyCode | |
KeyData | |
KeyValue | |
Modifiers | |
Shift | |
SuppressKeyPress |
Remarks
This event is raised when a key is pressed down.
See Also