DragData

@Serializable
data class DragData(val items: List<Input.DragDataItem>, val files: List<String>? = null, val dragOperationsMask: Int)

Constructors

Link copied to clipboard
constructor(items: List<Input.DragDataItem>, files: List<String>? = null, dragOperationsMask: Int)

Properties

Link copied to clipboard

Bit field representing allowed drag operations. Copy = 1, Link = 2, Move = 16

Link copied to clipboard
val files: List<String>? = null

List of filenames that should be included when dropping

Link copied to clipboard