Table of Contents
WebView.KeyDown Event

Triggers when a key is pressed.

Syntax
 public event WndMsgEventHandler KeyDown;
Event Data

The event handler receives an argument of type WndMsgEventArgs containing data related to this event. The following WndMsgEventArgs properties provide information specific to this event.

Name Description
HWnd Get the window handle of the message.
LParam Gets the LPARAM for the message.
Message Gets the ID number of the message.
WParam Gets the WPARAM for the message.
See Also