Table of Contents

Enum DragDropEffects

Namespace
Alternet.UI
Assembly
Alternet.UI.Interfaces.dll

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

[Flags]
public enum DragDropEffects

Fields

All = Scroll | Copy | Move

The combination of the Copy, Move, and Scroll effects.

Copy = 1

The data is copied to the drop target.

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.