New to Telerik UI for BlazorStart a free 30-day trial

The class that describes the event arguments to the treelist row drop event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class TreeListRowDropEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTreeListRowDropEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

C#
public TreeListRowDropEventArgs()

Properties

The Id of the component over which the item is dropped.

C#
public string DestinationComponentId { get; set; }

Defines the destination index inside the component over which the item is dropped. Index is in a format definend by the destination component.

C#
public string DestinationIndex { get; set; }

Defines the destination item over which the row was dropped.

C#
public TItem DestinationItem { get; set; }

Defines the TreeList reference where item is dropped. Useful when dragging between different treelist components.

C#
public TelerikTreeList<TItem> DestinationTreeList { get; set; }

Defines the drop position TreeListRowDropPosition. Supported values are Before, After and Over.

C#
public TreeListRowDropPosition DropPosition { get; set; }

Item

TItem

Defines the dropped row item.

C#
public TItem Item { get; set; }

A collection of all dragged items.

C#
public IEnumerable<TItem> Items { get; set; }