Defines the type of operation to be performed during a drag-and-drop action. This is not directly used in current mutations but is available for potential future extensions related to advanced drag-and-drop simulations.

Definition

enum DragOperation {
  COPY
  LINK
  MOVE
}

Values

COPY

The dragged data will be copied to the target. A link or reference to the dragged data will be created at the target.

MOVE

The dragged data will be moved from the source to the target.