haXe API Documentation
Back | Index
extern class js.html.UIEvent
extends Event
Available in js

dom/interfaces/events/nsIDOMUIEvent.idlScriptable

A basic event interface for all user interface events
1.0
11.0
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