DropAction
Enum
Defines the action that should be executed on when drag drop operation completes.
Definition
Namespace:Telerik.Windows.Controls.TreeView
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public enum DropAction
Fields
Dragged item should be added to the destination and should not be removed from the source.
C#
Copy = 0
Dragged item should not be added to the destination and removed from the source.
C#
Delete = 2
Dragged item should be added to the destination and removed from the source.
C#
Move = 1
Dragged item should not be added to the destination and should not be removed from the source.
C#
None = 3