→ UIEvent
Creates an event.
Encapsulates input event information for an event that propagates through a container and control hierarchy.
| Name | Type | Access | Description |
|---|---|---|---|
| Boolean | readonly | True if the event is of a type that bubbles. | |
| Boolean | readonly | True if the default action associated with the event can be canceled with preventDefault(). | |
| Boolean | readonly | True if this event can be captured. | |
| Boolean | readonly | The event target object which is currently handling the event. During capturing and bubbling, this is different from the property target. | |
| Varies | readonly | The click count for a mouse-click event. | |
| String | readonly | The current phase of event propagation; one of none, target, capture, bubble. | |
| Object | readonly | The event target object for this event. | |
| Date | readonly | The date and time at which the event occurred. | |
| String | readonly | The name of the event that this object represents. | |
| Varies | readonly | The ScriptUI element that this event relates to. |
Creates an event.
Initializes a UI event as a core W3C event.
Initializes an event.
Prevents the default action associated with this event from being called.
Stops the propagation of this event.
Methods that return a UIEvent.