CoreWebView2ControllerOptions.AllowHostInputProcessing Property

Definition

Allows user input messages to pass through the browser window to be received by an app process window.

public bool AllowHostInputProcessing { get; set; }
member this.AllowHostInputProcessing : bool with get, set
Public Property AllowHostInputProcessing As Boolean

Property Value

Remarks

The property is to enable/disable input passing through the app before being delivered to the WebView2. Setting this property to TRUE allows default .NET event handling API of WebView2 control to work, such as PreProcessMessage and ProcessCmdKey. This property is only applicable to controllers created with CoreWebView2Environment.CreateCoreWebView2ControllerAsync and not composition controllers created with CoreWebView2Environment.CreateCoreWebView2CompositionControllerAsync. By default the value is FALSE.

Applies to