DragDropEffects
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the possible effects of a drag-and-drop operation.
- C#
- VB.NET
public enum DragDropEffects : Enum
Public Enum DragDropEffects As [Enum]
Fields
| Name | Description |
|---|---|
| All | The combination of the Copy, Move, and Link effects. |
| Copy | The data from the drag source is copied to the drop target. |
| Link | The data from the drag source is linked to the drop target. |
| Move | The data from the drag source is moved to the drop target. |
| None | The drop target does not accept the data. |
Used By
| Name | Description |
|---|---|
| Control.DoDragDrop | Begins a drag-and-drop operation. |
| DragEventArgs.AllowedEffect | Returns which drag-and-drop operations are allowed by the originator (or source) of the drag event. |
| DragEventArgs.Effect | Returns or sets the target drop effect in a drag-and-drop operation. |