'Declaration Public Event KeyUp As KeyEventHandler
'Usage Dim instance As DropDownEditor Dim handler As KeyEventHandler AddHandler instance.KeyUp, handler
public event KeyEventHandler KeyUp
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 pressed key is released.
See Also