DragDataItem

@Serializable
data class DragDataItem(val mimeType: String, val data: String, val title: String? = null, val baseURL: String? = null)

Constructors

Link copied to clipboard
constructor(mimeType: String, data: String, title: String? = null, baseURL: String? = null)

Properties

Link copied to clipboard
val baseURL: String? = null

Stores the base URL for the contained markup. Only valid when mimeType == "text/html".

Link copied to clipboard

Depending of the value of mimeType, it contains the dragged link, text, HTML markup or any other data.

Link copied to clipboard

Mime type of the dragged data.

Link copied to clipboard
val title: String? = null

Title associated with a link. Only valid when mimeType == "text/uri-list".