UIEvent

open external class UIEvent(type: String, eventInitDict: UIEventInit) : Event

Exposes the JavaScript UIEvent to Kotlin

Constructors

UIEvent
Link copied to clipboard
fun UIEvent(type: String, eventInitDict: UIEventInit = definedExternally)

Types

Companion
Link copied to clipboard
object Companion

Functions

composedPath
Link copied to clipboard
fun composedPath(): Array<EventTarget>
initEvent
Link copied to clipboard
fun initEvent(type: String, bubbles: Boolean, cancelable: Boolean)
preventDefault
Link copied to clipboard
fun preventDefault()
stopImmediatePropagation
Link copied to clipboard
fun stopImmediatePropagation()
stopPropagation
Link copied to clipboard
fun stopPropagation()

Properties

bubbles
Link copied to clipboard
open val bubbles: Boolean
cancelable
Link copied to clipboard
open val cancelable: Boolean
composed
Link copied to clipboard
open val composed: Boolean
currentTarget
Link copied to clipboard
open val currentTarget: EventTarget?
defaultPrevented
Link copied to clipboard
open val defaultPrevented: Boolean
detail
Link copied to clipboard
open val detail: Int
eventPhase
Link copied to clipboard
open val eventPhase: Short
isTrusted
Link copied to clipboard
open val isTrusted: Boolean
target
Link copied to clipboard
open val target: EventTarget?
timeStamp
Link copied to clipboard
open val timeStamp: Number
type
Link copied to clipboard
open val type: String
view
Link copied to clipboard
open val view: Window?

Inheritors

FocusEvent
Link copied to clipboard
MouseEvent
Link copied to clipboard
InputEvent
Link copied to clipboard
KeyboardEvent
Link copied to clipboard
CompositionEvent
Link copied to clipboard
TouchEvent
Link copied to clipboard