Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class TreeViewDragEndEventArgs
Inheritance: objectTreeViewDragEndEventArgs
Constructors
C#
public TreeViewDragEndEventArgs()
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. If value equals null the position is not above a TreeView item.
C#
public TreeViewDropPosition? DropPosition { get; set; }