Package | dom.events |
Interface | public interface EventTargetGroup |
Introduced in: | DOM 3 Events |
Note: This is from DOM 3 Events Working Draft 10 (April 2001) and has since been deprecated in Working Draft 21 (December 2007)
See also
Method | Defined By | ||
---|---|---|---|
DOM 3 Events addEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
This method is equivalent to the addEventListener method of the EventTarget interface, with the exception of
the added eventGroup parameter. | EventTargetGroup | ||
DOM 3 Events removeEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
This method is equivalent to the removeEventListener method of the EventTarget interface, with the exception
of the added eventGroup parameter. | EventTargetGroup |
DOM 3 Events addEventListener | () | method |
public function addEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
Introduced in: | DOM 3 Events |
This method is equivalent to the addEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter. The listener is registered with this EventGroup associated.
Parameters
type:DOMString | |
listener:EventListener | |
useCapture:Boolean | |
eventGroup:EventGroup — The EventGroup to associate with the listener.
|
See also
DOM 3 Events removeEventListener | () | method |
public function removeEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
Introduced in: | DOM 3 Events |
This method is equivalent to the removeEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter. The listener registered with this EventGroup associated is removed.
Parameters
type:DOMString | |
listener:EventListener | |
useCapture:Boolean | |
eventGroup:EventGroup — The EventGroup to associate with the listener.
|
See also