DragDropEffects Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the effects of a drag-and-drop operation.
This enumeration supports a bitwise combination of its member values.
public enum class DragDropEffects
[System.Flags]
public enum DragDropEffects
[<System.Flags>]
type DragDropEffects =
Public Enum DragDropEffects
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Scroll | -2147483648 | Scrolling is about to start or is currently occurring in the drop target. |
All | -2147483645 | The data is copied, removed from the drag source, and scrolled in the drop target. |
None | 0 | The drop target does not accept the data. |
Copy | 1 | The data 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. |