Not documented.

Implemented by
Annotations
  • DomName('Event')

Constants

AT_TARGET int

const 2
BUBBLING_PHASE int

const 3
CAPTURING_PHASE int

const 1

Static Methods

internalCreateEvent() Event

Properties

read / write
bubbles bool

read-only
cancelable bool

read-only
clipboardData DataTransfer

Access to the system's clipboard data during copy, cut, and paste events.

read-only
currentTarget EventTarget

read-only
defaultPrevented bool

read-only
eventPhase int

read-only
hashCode int

read-only
matchingTarget Element

A pointer to the element whose CSS selector matched within which an event was fired. If this Event was not associated with any Event delegation, accessing this value will throw an UnsupportedError.

read-only
path List<Node>

This event's path, taking into account shadow DOM.

read-only
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited
target EventTarget

read-only
timeStamp int

read-only
type String

read-only

Constructors

Event(String type, {bool canBubble: true, bool cancelable: true})

Event.eventType(String type, String name, {bool canBubble: true, bool cancelable: true})

Creates a new Event object of the specified type.

Event.internal_()

Operators

operator ==(other) bool

The equality operator.

Methods

noSuchMethod(Invocation invocation) → dynamic

noSuchMethod is invoked when users invoke a non-existent method on an object. The name of the method and the arguments of the invocation are passed to noSuchMethod in an Invocation. If noSuchMethod returns a value, that value becomes the result of the original invocation.

inherited
preventDefault() → void

stopImmediatePropagation() → void

stopPropagation() → void

toString() String

Returns a string representation of this object.

inherited