Class
RadTreeViewDragEndedEventArgs

The EventArgs for the DragEnded event of the RadTreeView.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public class RadTreeViewDragEndedEventArgs : RadTreeViewDragEventArgs

Inheritance: objectRadRoutedEventArgsRadTreeViewDragEventArgsRadTreeViewDragEndedEventArgs

Inherited Members RadTreeViewDragEventArgs.DraggedItems

Constructors

RadTreeViewDragEndedEventArgs(bool, Collection<object>, RadTreeViewItem, RoutedEvent, object)

Initializes a new instance of the RadTreeViewDragEndedEventArgs class.

Declaration

cs-api-definition
public RadTreeViewDragEndedEventArgs(bool isCanceled, Collection<object> draggedItems, RadTreeViewItem targetDropItem, RoutedEvent routedEvent, object source)

Parameters

isCanceled

bool

Is the event canceled.

draggedItems

Collection<object>

The items that are being dragged.

targetDropItem

RadTreeViewItem

The target item on which they are dropped.

routedEvent

RoutedEvent

The associated routed event.

source

object

The source of the event.

Properties

DropPosition

Gets the position where the items are dropped relative to the TargetDropItem. If you need to set the DropPosition, set it to the targetDropItem.

Declaration

cs-api-definition
public DropPosition DropPosition { get; }

Property Value

DropPosition

IsCanceled

Gets whether the event has been canceled.

Declaration

cs-api-definition
public bool IsCanceled { get; }

Property Value

bool

TargetDropItem

Gets the item on which the items are dropped.

Declaration

cs-api-definition
public RadTreeViewItem TargetDropItem { get; }

Property Value

RadTreeViewItem