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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class TreeViewDragEventArgs : TreeViewEventArgsBase

Inheritance: objectTreeViewEventArgsBaseTreeViewDragEventArgs

Inherited Members TreeViewEventArgsBase.Item

Constructors

C#
public TreeViewDragEventArgs(object item)
Parameters:itemobject

Properties

The Id of the TreeView component over which the item is dragged.

C#
public string DestinationComponentId { get; set; }

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

C#
public string DestinationIndex { get; set; }

The treeview item over which the item is dragged.

C#
public object DestinationItem { get; set; }

The treeview reference over which the item is dragged.

C#
public TelerikTreeView DestinationTreeView { get; set; }

Defines the TreeViewDropPosition of the dragged item relative to the item under the mouse cursor. Supported values are Before, Over, After. If value equals null the drag clue is not above a TreeView item.

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

The X coordinates of the mouse.

C#
public double PageX { get; set; }

The Y coordinates of the mouse.

C#
public double PageY { get; set; }