Class EventTarget
- Namespace
- SharpVectors.Dom.Events
- Assembly
- SharpVectors.Dom.dll
Summary description for EventTarget.
public class EventTarget : IEventTargetSupport, IEventTarget
- Inheritance
-
EventTarget
- Implements
- Inherited Members
Constructors
Methods
- AddEventListener(string, EventListener, bool)
This method allows the registration of an event listener in the default group and, depending on the
useCapture
parameter, on the capture phase of the DOM event flow or its target and bubbling phases. https://www.w3.org/TR/SVG/interact.html#SVGEvents
- AddEventListenerNs(string, string, EventListener, bool, object)
This method allows the registration of an event listener in a specified group or the default group and, depending on the
useCapture
parameter, on the capture phase of the DOM event flow or its target and bubbling phases.
- DispatchEvent(IEvent)
This method allows the dispatch of events into the implementation's event model.
- HasEventListenerNs(string, string)
This method allows the DOM application to know if this IEventTarget contains an event listener registered for the specified event type.
- RemoveEventListener(string, EventListener, bool)
This method allows the removal of event listeners from the default group.
- RemoveEventListenerNs(string, string, EventListener, bool)
This method allows the removal of event listeners from a specified group or the default group.
- WillTriggerNs(string, string)
This method allows the DOM application to know if an event listener, attached to this IEventTarget or one of its ancestors, will be triggered by the specified event type during the dispatch of the event to this event target or one of its descendants.