Package elemental2.dom
Interface UIEventInit
-
- All Superinterfaces:
EventInit
- All Known Subinterfaces:
DragEventInit
,EventModifierInit
,FocusEventInit
,InputEventInit
,KeyboardEventInit
,MouseEventInit
,TouchEventInit
,WheelEventInit
@JsType(isNative=true, namespace="<global>") public interface UIEventInit extends EventInit
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static UIEventInit
create()
int
getDetail()
Window
getView()
void
setDetail(int detail)
void
setView(Window view)
-
Methods inherited from interface elemental2.dom.EventInit
isBubbles, isCancelable, isComposed, setBubbles, setCancelable, setComposed
-
-
-
-
Method Detail
-
create
@JsOverlay static UIEventInit create()
-
getDetail
@JsProperty int getDetail()
-
getView
@JsProperty Window getView()
-
setDetail
@JsProperty void setDetail(int detail)
-
setView
@JsProperty void setView(Window view)
-
-