Click or drag to resize

DragDropEffects Enumeration

Specifies the possible effects of a drag-and-drop operation.

Namespace:  Easymap.AddIn.Common
Assembly:  Easymap.AddIn (in Easymap.AddIn.dll) Version: 11.2.0.0
Syntax
[FlagsAttribute]
public enum DragDropEffects
Members
  Member nameValueDescription
Scroll-2147483648 The target can be scrolled while dragging to locate a drop position that is not currently visible in the target.
All-2147483645 The combination of the DragDropEffects.Copy, DragDropEffects.Link, DragDropEffects.Move and DragDropEffects.Scroll effects.
None0 The drop target does not accept the data.
Copy1 The data from the drag source is copied to the drop target.
Move2 The data from the drag source is moved to the drop target.
Link4 The data from the drag source is linked to the drop target.
See Also