Interface KeyboardEventInit

All Superinterfaces:
EventInit, EventModifierInit, UIEventInit

@JsType(isNative=true, namespace="<global>") public interface KeyboardEventInit extends EventModifierInit
  • Method Details

    • create

      @JsOverlay static KeyboardEventInit create()
    • getChar

      @JsProperty String getChar()
    • getCode

      @JsProperty String getCode()
    • getKey

      @JsProperty String getKey()
    • getLocale

      @JsProperty String getLocale()
    • getLocation

      @JsProperty int getLocation()
    • isIsComposing

      @JsProperty boolean isIsComposing()
    • isRepeat

      @JsProperty boolean isRepeat()
    • setChar

      @JsProperty void setChar(String char_)
    • setCode

      @JsProperty void setCode(String code)
    • setIsComposing

      @JsProperty void setIsComposing(boolean isComposing)
    • setKey

      @JsProperty void setKey(String key)
    • setLocale

      @JsProperty void setLocale(String locale)
    • setLocation

      @JsProperty void setLocation(int location)
    • setRepeat

      @JsProperty void setRepeat(boolean repeat)