Class CollectionViewDragDropContext
Provides a context for a drag-drop operation of RadCollectionView.
Inheritance
Namespace: Telerik.Maui.Controls.CollectionView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CollectionViewDragDropContext : Object
Constructors
CollectionViewDragDropContext()
Declaration
public CollectionViewDragDropContext()
Properties
DestinationItemsSource
Gets the drop target control ItemsSource. This property is null when the state represents the context of the drag source control.
Declaration
public IList DestinationItemsSource { get; }
Property Value
System.Collections.IList
|
DraggedItem
Gets the item that is being dragged.
Declaration
public object DraggedItem { get; }
Property Value
System.Object
|
DropTargetItem
Gets the item that is below the drop point.
Declaration
public object DropTargetItem { get; }
Property Value
System.Object
|
Placement
Gets a value indicating whether the dargged item should be placed before or after the drop target item.
Declaration
public ItemDropPlacement Placement { get; }
Property Value
ItemDropPlacement
|
SourceItemsSource
Gets the drag source control ItemsSource. This property is null when the state represents the context of the drop target control.
Declaration
public IList SourceItemsSource { get; }
Property Value
System.Collections.IList
|