Class TreeViewDragEndEventArgs
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeViewDragEndEventArgs : Object
Constructors
TreeViewDragEndEventArgs()
Declaration
public TreeViewDragEndEventArgs()
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. If value equals null
the position is not above a TreeView item.
Declaration
public Nullable<TreeViewDropPosition> DropPosition { get; set; }
Property Value
System.Nullable<TreeViewDropPosition>
|