Gets or sets the custom DOM event to listen.
            
 
    Namespace: 
   DotNetBrowser.Dom.Events
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.1
SyntaxEvent this[
	EventType eventType,
	bool useCapture = false
] { get; set; }Parameters
- eventType
 - Type: DotNetBrowser.Dom.EventsEventType
The event type to listen. - useCapture (Optional)
 - Type: SystemBoolean
                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
Type: 
EventThe object that can be used to listen to the custom DOM event.
See Also