Enum DragDropEffects
Specifies the possible effects of a drag-and-drop operation.
[Flags]
public enum DragDropEffects
Fields
All = Scroll | Copy | Move
Copy = 1
The data is copied to the drop target.
Link = 4
The data from the drag source is linked to the drop target.
Move = 2
The data from the drag source is moved to the drop target.
None = 0
The drop target does not accept the data.
Scroll = -2147483648
The target can be scrolled while dragging to locate a drop position that is not currently visible in the target.
Remarks
This enumeration supports a bitwise combination of its member values.