Class TreeViewDropEventArgs
The event arguments of the drop event of the TreeView.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeViewDropEventArgs : TreeViewEventArgsBase
Constructors
TreeViewDropEventArgs(Object)
Declaration
public TreeViewDropEventArgs(object item)
Parameters
System.Object
item
|
Properties
DestinationComponentId
The Id of the component over which the item is dropped.
Declaration
public string DestinationComponentId { get; set; }
Property Value
System.String
|
DestinationIndex
Defines the destination index inside the component over which the item is dropped. Index is in a format definend by the destination component.
Declaration
public string DestinationIndex { get; set; }
Property Value
System.String
|
DestinationItem
Defines the destination treeview item over which the item is dragged.
Declaration
public object DestinationItem { get; set; }
Property Value
System.Object
|
DestinationTreeView
Defines the treeview reference where item is dropped. Useful when dragging between trees.
Declaration
public TelerikTreeView DestinationTreeView { get; set; }
Property Value
TelerikTreeView
|
DropPosition
Defines the drop position TreeViewDropPosition. Supported values are Before, Over, After.
Declaration
public Nullable<TreeViewDropPosition> DropPosition { get; set; }
Property Value
System.Nullable<TreeViewDropPosition>
|