Package elemental2.dom
Interface EventInit
-
- All Known Subinterfaces:
ClipboardEventInit
,CloseEventInit
,CustomEventInit<T>
,DeviceOrientationEventInit
,DragEventInit
,ErrorEventInit
,EventModifierInit
,FocusEventInit
,FormDataEventInit
,InputEventInit
,KeyboardEventInit
,MessageEventInit<T>
,MouseEventInit
,ProgressEventInit
,PromiseRejectionEventInit
,SecurityPolicyViolationEventInit
,TouchEventInit
,UIEventInit
,WheelEventInit
@JsType(isNative=true, namespace="<global>") public interface EventInit
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static EventInit
create()
boolean
isBubbles()
boolean
isCancelable()
boolean
isComposed()
void
setBubbles(boolean bubbles)
void
setCancelable(boolean cancelable)
void
setComposed(boolean composed)
-
-
-
Method Detail
-
create
@JsOverlay static EventInit create()
-
isBubbles
@JsProperty boolean isBubbles()
-
isCancelable
@JsProperty boolean isCancelable()
-
isComposed
@JsProperty boolean isComposed()
-
setBubbles
@JsProperty void setBubbles(boolean bubbles)
-
setCancelable
@JsProperty void setCancelable(boolean cancelable)
-
setComposed
@JsProperty void setComposed(boolean composed)
-
-