Interface IEvent
- Namespace
- DotNetBrowser.Dom.Events
- Assembly
- DotNetBrowser.dll
Represents DOM Event
object and provides access to the event object data.
public interface IEvent : IAutoDisposable
- Inherited Members
Properties
- Bubbles
Indicates whether an event is a bubbling event.
- Cancelable
Indicates whether an event can have its default action prevented.
- CurrentTarget
Gets the IEventTarget whose event listeners are currently being processed.
- EventPhase
Gets the phase of event flow.
- Target
Gets the IEventTarget to which the event was originally dispatched.
- Type
Gets the type of this DOM event.
Methods
- PreventDefault()
Cancels the event if it is cancelable, without stopping further propagation of the event.
- StopPropagation()
Prevents further propagation of the current event.