Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser
- Classes
- Interfaces
- Enumerations
- ConsoleMessageSeverity Enumeration
- ConsoleMessageType Enumeration
- ContextMenuMediaType Enumeration
- ContextMenuSourceFlags Enumeration
- DOMNodeType Enumeration
- DownloadState Enumeration
- EditState Enumeration
- ErrorCode Enumeration
- EventFlags Enumeration
- FileDialogMode Enumeration
- InputMsgTarget Enumeration
- JSDialogType Enumeration
- JSInvokeResult Enumeration
- KeyboardEventType Enumeration
- KeyCode Enumeration
- MediaState Enumeration
- MouseEventType Enumeration
- NavigationType Enumeration
- Permissions Enumeration
- PostDataItemType Enumeration
- PrintResult Enumeration
- ResourceType Enumeration
- WebViewCloseReason Enumeration
- Delegates
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
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