Click or drag to resize

EventUseCapture Property

Indicates if capturing is used for the DOM event.

Namespace:  DotNetBrowser.Dom.Events
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public bool UseCapture { get; }

Property Value

Type: Boolean
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.

See Also