[ enum ] DragDropAction

Description:

Enum for drag and drop actions.
Used with dragAction() and dropAction().

Type: string

Properties:

Name Description

None

No action.

Copy

Copy action.

Move

Move action.

CopyOrMove

Copy or move action.

Link

Link action.

Examples:

list.dragAction(DragDropAction.CopyOrMove);
list.dropAction(DragDropAction.CopyOrMove);

Also See: