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

The event arguments of the drop event of the TreeView.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class TreeViewDropEventArgs : TreeViewEventArgsBase

Inheritance: objectTreeViewEventArgsBaseTreeViewDropEventArgs

Inherited Members TreeViewEventArgsBase.Item

Constructors

C#
public TreeViewDropEventArgs(object item)
Parameters:itemobject

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 treeview item over which the item is dragged.

C#
public object DestinationItem { get; set; }

Defines the treeview reference where item is dropped. Useful when dragging between trees.

C#
public TelerikTreeView DestinationTreeView { get; set; }

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

C#
public TreeViewDropPosition? DropPosition { get; set; }