Class RadTreeListViewDragEndedEventArgs
The EventArgs for the DragEnded event of the RadTreeView.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class RadTreeListViewDragEndedEventArgs : RadTreeListViewDragEventArgs
Constructors
RadTreeListViewDragEndedEventArgs(Boolean, Collection<Object>, GridViewRow, RoutedEvent, Object)
Initializes a new instance of the RadTreeListViewDragEndedEventArgs class.
Declaration
public RadTreeListViewDragEndedEventArgs(bool isCanceled, Collection<object> draggedItems, GridViewRow targetDropItem, RoutedEvent routedEvent, object source)
Parameters
System.Boolean
isCanceled
Is the event canceled. |
System.Collections.ObjectModel.Collection<System.Object>
draggedItems
The items that are being dragged. |
GridViewRow
targetDropItem
The target item on which they are dropped. |
RoutedEvent
routedEvent
The associated routed event. |
System.Object
source
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
public TreeListViewDropPosition DropPosition { get; }
Property Value
TreeListViewDropPosition
|
IsCanceled
Gets whether the event has been canceled.
Declaration
public bool IsCanceled { get; }
Property Value
System.Boolean
|
TargetDropItem
Gets the item on which the items are dropped.
Declaration
public GridViewRow TargetDropItem { get; }
Property Value
GridViewRow
|