Package elemental2.dom
Interface KeyboardEventInit
-
- All Superinterfaces:
EventInit
,EventModifierInit
,UIEventInit
@JsType(isNative=true, namespace="<global>") public interface KeyboardEventInit extends EventModifierInit
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static KeyboardEventInit
create()
java.lang.String
getChar()
java.lang.String
getCode()
java.lang.String
getKey()
java.lang.String
getLocale()
int
getLocation()
boolean
isIsComposing()
boolean
isRepeat()
void
setChar(java.lang.String char_)
void
setCode(java.lang.String code)
void
setIsComposing(boolean isComposing)
void
setKey(java.lang.String key)
void
setLocale(java.lang.String locale)
void
setLocation(int location)
void
setRepeat(boolean repeat)
-
Methods inherited from interface elemental2.dom.EventInit
isBubbles, isCancelable, isComposed, setBubbles, setCancelable, setComposed
-
Methods inherited from interface elemental2.dom.EventModifierInit
isAltKey, isCtrlKey, isMetaKey, isModifierAltGraph, isModifierCapsLock, isModifierFn, isModifierFnLock, isModifierHyper, isModifierNumLock, isModifierScrollLock, isModifierSuper, isModifierSymbol, isModifierSymbolLock, isShiftKey, setAltKey, setCtrlKey, setMetaKey, setModifierAltGraph, setModifierCapsLock, setModifierFn, setModifierFnLock, setModifierHyper, setModifierNumLock, setModifierScrollLock, setModifierSuper, setModifierSymbol, setModifierSymbolLock, setShiftKey
-
Methods inherited from interface elemental2.dom.UIEventInit
getDetail, getView, setDetail, setView
-
-
-
-
Method Detail
-
create
@JsOverlay static KeyboardEventInit create()
-
getChar
@JsProperty java.lang.String getChar()
-
getCode
@JsProperty java.lang.String getCode()
-
getKey
@JsProperty java.lang.String getKey()
-
getLocale
@JsProperty java.lang.String getLocale()
-
getLocation
@JsProperty int getLocation()
-
isIsComposing
@JsProperty boolean isIsComposing()
-
isRepeat
@JsProperty boolean isRepeat()
-
setChar
@JsProperty void setChar(java.lang.String char_)
-
setCode
@JsProperty void setCode(java.lang.String code)
-
setIsComposing
@JsProperty void setIsComposing(boolean isComposing)
-
setKey
@JsProperty void setKey(java.lang.String key)
-
setLocale
@JsProperty void setLocale(java.lang.String locale)
-
setLocation
@JsProperty void setLocation(int location)
-
setRepeat
@JsProperty void setRepeat(boolean repeat)
-
-