Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class TreeViewDragEventArgs : TreeViewEventArgsBase
Inheritance: objectTreeViewEventArgsBaseTreeViewDragEventArgs
Inherited Members
Constructors
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; }