ClassTreeViewDropEventArgs
Class
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
Constructors
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.
Declaration
cs-api-definition
public TreeViewDropPosition? DropPosition { get; set; }
Property Value