Click or drag to resize

IInterceptableInputEvent<TIInputEventArgs, TInputEventArgs> Interface

An interceptable and raisable input event. It is possible to intercept and suppress this input event before it is actually processed by the browser or to raise it and dispatch to the currently loaded web page.

Namespace:  DotNetBrowser.Input
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.23.1
Syntax
C#
public interface IInterceptableInputEvent<TIInputEventArgs, in TInputEventArgs> : IInterceptableEvent<TIInputEventArgs>, 
	IInputEvent<TIInputEventArgs, TInputEventArgs>
where TInputEventArgs : TIInputEventArgs

Type Parameters

TIInputEventArgs
The input event arguments interface.
TInputEventArgs
The input event arguments.

The IInterceptableInputEvent<TIInputEventArgs, TInputEventArgs> type exposes the following members.

Properties
Methods
  NameDescription
Public methodRaise
Raises and dispatches the event to the currently loaded web page. It does nothing if the browser hasn't loaded any web page.
(Inherited from IInputEvent<TIInputEventArgs, TInputEventArgs>.)
Top
See Also