Class TreeViewDragEventArgs
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeViewDragEventArgs : TreeViewEventArgsBase
Constructors
TreeViewDragEventArgs(Object)
Declaration
public TreeViewDragEventArgs(object item)
Parameters
System.Object
item
|
Properties
DestinationComponentId
The Id of the TreeView component over which the item is dragged.
Declaration
public string DestinationComponentId { get; set; }
Property Value
System.String
|
DestinationIndex
The destination index inside the component over which the item is dragged. Index is in a format definend by the destination component.
Declaration
public string DestinationIndex { get; set; }
Property Value
System.String
|
DestinationItem
The treeview item over which the item is dragged.
Declaration
public object DestinationItem { get; set; }
Property Value
System.Object
|
DestinationTreeView
The treeview reference over which the item is dragged.
Declaration
public TelerikTreeView DestinationTreeView { get; set; }
Property Value
TelerikTreeView
|
DropPosition
Defines the TreeViewDropPosition of the dragged item relative to the item under the mouse cursor.
Supported values are Before, Over, After.
If value equals null
the drag clue is not above a TreeView item.
Declaration
public Nullable<TreeViewDropPosition> DropPosition { get; set; }
Property Value
System.Nullable<TreeViewDropPosition>
|
PageX
The X coordinates of the mouse.
Declaration
public double PageX { get; set; }
Property Value
System.Double
|
PageY
The Y coordinates of the mouse.
Declaration
public double PageY { get; set; }
Property Value
System.Double
|