DragEffect

object DragEffect

When dragging, there are several operations that may be performed. The copy operation is used to indicate that the data being dragged will be copied from its present location to the drop location. The move operation is used to indicate that the data being dragged will be moved, and the link operation is used to indicate that some form of relationship or connection will be created between the source and drop locations.

You can specify which of the three operations are allowed for a drag source by setting the effectAllowed property within a dragstart event listener.

Note that these values must be used exactly as defined below.

https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Drag_operations#drageffects

class Object
trait Matchable
class Any

Value members

Concrete fields

final val All: "all"

copy, move, or link

copy, move, or link

final val Copy: "copy"

copy only

copy only

final val CopyMove: "copyMove"

copy or move only

copy or move only

final val LinkMove: "linkMove"

link or move only

link or move only

final val Move: "move"

move only

move only

final val None: "none"

no operation is permitted

no operation is permitted