Class
RadTreeListViewDragEndedEventArgs

The EventArgs for the DragEnded event of the RadTreeView.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

cs-api-definition
public class RadTreeListViewDragEndedEventArgs : RadTreeListViewDragEventArgs

Inheritance: objectRadRoutedEventArgsRadTreeListViewDragEventArgsRadTreeListViewDragEndedEventArgs

Inherited Members RadTreeListViewDragEventArgs.DraggedItems

Constructors

RadTreeListViewDragEndedEventArgs(bool, Collection<object>, GridViewRow, RoutedEvent, object)

Initializes a new instance of the RadTreeListViewDragEndedEventArgs class.

Declaration

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

Parameters

isCanceled

bool

Is the event canceled.

draggedItems

Collection<object>

The items that are being dragged.

targetDropItem

GridViewRow

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 TreeListViewDropPosition DropPosition { get; }

Property Value

TreeListViewDropPosition

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 GridViewRow TargetDropItem { get; }

Property Value

GridViewRow