Class
TreeViewDropEventArgs

The event arguments of the drop event of the TreeView.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TreeViewDropEventArgs : TreeViewEventArgsBase

Inheritance: objectTreeViewEventArgsBaseTreeViewDropEventArgs

Inherited Members TreeViewEventArgsBase.Item

Constructors

TreeViewDropEventArgs(object)

Declaration

cs-api-definition
public TreeViewDropEventArgs(object item)

Parameters

item

object

Properties

DestinationComponentId

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

Declaration

cs-api-definition
public string DestinationComponentId { get; set; }

Property Value

string

DestinationIndex

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

Declaration

cs-api-definition
public string DestinationIndex { get; set; }

Property Value

string

DestinationItem

Defines the destination treeview item over which the item is dragged.

Declaration

cs-api-definition
public object DestinationItem { get; set; }

Property Value

object

DestinationTreeView

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

Declaration

cs-api-definition
public TelerikTreeView DestinationTreeView { get; set; }

Property Value

TelerikTreeView

DropPosition

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

Declaration

cs-api-definition
public TreeViewDropPosition? DropPosition { get; set; }

Property Value

TreeViewDropPosition?