DragDropEffects Enumeration |
Specifies the possible effects of a drag-and-drop operation.
Namespace:
Easymap.AddIn.Common
Assembly:
EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.0.0.0
Syntax [FlagsAttribute]
public enum DragDropEffects
<FlagsAttribute>
Public Enumeration DragDropEffects
Members
| Member name | Value | Description |
---|
| 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.
|
| None | 0 |
The drop target does not accept the data.
|
| Copy | 1 |
The data from the drag source is copied to the drop target.
|
| Move | 2 |
The data from the drag source is moved to the drop target.
|
| Link | 4 |
The data from the drag source is linked to the drop target.
|
See Also