New to Telerik UI for .NET MAUIStart a free 30-day trial

Provides a context for a drag-drop operation of RadCollectionView.

Definition

Namespace:Telerik.Maui.Controls.CollectionView

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class CollectionViewDragDropContext

Inheritance: objectCollectionViewDragDropContext

Constructors

C#
public CollectionViewDragDropContext()

Properties

Gets the drop target control ItemsSource. This property is null when the state represents the context of the drag source control.

C#
public IList DestinationItemsSource { get; }

Gets the item that is being dragged.

C#
public object DraggedItem { get; }

Gets the item that is below the drop point.

C#
public object DropTargetItem { get; }

Gets a value indicating whether the dargged item should be placed before or after the drop target item.

C#
public ItemDropPlacement Placement { get; }

Gets the drag source control ItemsSource. This property is null when the state represents the context of the drop target control.

C#
public IList SourceItemsSource { get; }