haXe API Documentation
Back |
Indexextern class js.html.UIEvent
Available in js
A basic event interface for all user interface events
Inherits from:
nsIDOMEvent
Last changed in Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6)
The DOM UIEvent
represents simple user interface events.
Documentation for this class was provided by
MDN.
- var charCode(default,null) : Int
- var detail(default,null) : Int
- Detail about the event, depending on the type of event. Read only.
- var keyCode(default,null) : Int
- var layerX(default,null) : Int
- var layerY(default,null) : Int
- var pageX(default,null) : Int
- var pageY(default,null) : Int
- var view(default,null) : DOMWindow
- A view which generated the event. Read only.
- var which(default,null) : Int
- function initUIEvent(type : String, canBubble : Bool, cancelable : Bool, view : DOMWindow, detail : Int) : Void
Back |
Index