ClassTreeViewDragEndEventArgs
Class
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
cs-api-definition
public class TreeViewDragEndEventArgs
Inheritance: objectTreeViewDragEndEventArgs
Constructors
TreeViewDragEndEventArgs()
Declaration
cs-api-definition
public TreeViewDragEndEventArgs()
Properties
DestinationComponentId
The Id of the component over which the item is dropped.
Declaration
cs-api-definition
public string DestinationComponentId { get; set; }
Property Value
DestinationIndex
Defines the destination index inside the component over which the item is dropped. Index is in a format definend by the destination component.
DestinationItem
Defines the destination treeview item over which the item is dragged.
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
DropPosition
Defines the drop position TreeViewDropPosition. Supported values are Before, Over, After. If value equals null
the position is not above a TreeView item.
Declaration
cs-api-definition
public TreeViewDropPosition? DropPosition { get; set; }
Property Value