Table of Contents
InputMsgTarget Enumeration

Specifies the target to which an input message should be dispatched.

Namespace: EO.WebBrowser
Assembly: EO.WebBrowser (in EO.WebBrowser.dll)

Syntax
 public enum InputMsgTarget
Members
Member Name Description
None No further processing needed. This "consumes" the message. Use this option for scenarios such as you wish to completely disable certain input events (for example, right mouse click), or if you wish to intercept certain keystrokes and use them as hotkeys for your own specific action and no longer wish these keystrokes to reach the web page.
WebView The message should be dispatched to the WebView directly. This bypasses application level message routing thus will not raises events on that level. For example, a keyboard message that would have matched a menu item shortcut would no longer trigger the menu item's Click event if PreDispatchMsg returns this value.
Application The message should be dispatched to the host application. This is the default behavior. See here for more details.
See Also