Table of Contents

Property this

Namespace
DotNetBrowser.Dom.Events
Assembly
DotNetBrowser.dll

this[EventType, bool]

Gets or sets the custom DOM event to listen.

Event this[EventType eventType, bool useCapture = false] { get; set; }

Parameters

eventType EventType

The event type to listen.

useCapture bool

if true, indicates that the user wishes to initiate capture. After initiating capture, all events of the specified type will be dispatched to the registered listeners before being dispatched to any event target beneath them in the tree. Events which are bubbling upward through the tree will not trigger the listeners in this case.

Property Value

Event

The object that can be used to listen to the custom DOM event.