Table of Contents

Property UseCapture

Namespace
DotNetBrowser.Dom.Events
Assembly
DotNetBrowser.dll

UseCapture

Indicates if capturing is used for the DOM event.

public bool UseCapture { get; }

Property Value

bool

true if capturing is used, false otherwise.

Remarks

If capturing is used, 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.