DataTransfer

abstract external class DataTransfer(source)

Exposes the JavaScript DataTransfer to Kotlin

Since Kotlin

1.1
abstract external class DataTransfer : JsAny(source)

Exposes the JavaScript DataTransfer to Kotlin

Since Kotlin

1.8

Constructors

Link copied to clipboard
constructor()
constructor()

Properties

Link copied to clipboard
open var dropEffect: String
Since Kotlin 1.1
open var dropEffect: String
Since Kotlin 1.8
Link copied to clipboard
Since Kotlin 1.1
Since Kotlin 1.8
Link copied to clipboard
open val files: FileList
Since Kotlin 1.1
open val files: FileList
Since Kotlin 1.8
Link copied to clipboard
Since Kotlin 1.1
Since Kotlin 1.8
Link copied to clipboard
open val types: Array<out String>
Since Kotlin 1.1
open val types: JsArray<out JsString>
Since Kotlin 1.8

Functions

Link copied to clipboard
fun clearData(format: String = definedExternally)
Since Kotlin 1.1
fun clearData(format: String = definedExternally)
Since Kotlin 1.8
Link copied to clipboard
fun getData(format: String): String
Since Kotlin 1.1
fun getData(format: String): String
Since Kotlin 1.8
Link copied to clipboard
fun setData(format: String, data: String)
Since Kotlin 1.1
fun setData(format: String, data: String)
Since Kotlin 1.8
Link copied to clipboard
fun setDragImage(image: Element, x: Int, y: Int)
Since Kotlin 1.1
fun setDragImage(image: Element, x: Int, y: Int)
Since Kotlin 1.8
Link copied to clipboard

For a Dynamic value caught in JS, returns the corresponding Throwable if it was thrown from Kotlin, or null otherwise.

Since Kotlin 1.8
Link copied to clipboard
fun <T : JsAny> JsAny.unsafeCast(): T

Cast JsAny to other Js type without runtime check

Since Kotlin 1.8