Click or drag to resize

IInterceptableInputEventTIInputEventArgs, 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.13.0
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 IInterceptableInputEventTIInputEventArgs, 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 IInputEventTIInputEventArgs, TInputEventArgs.)
Top
See Also