Class
TreeViewDragEventArgs

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TreeViewDragEventArgs : TreeViewEventArgsBase

Inheritance: objectTreeViewEventArgsBaseTreeViewDragEventArgs

Inherited Members TreeViewEventArgsBase.Item

Constructors

TreeViewDragEventArgs(object)

Declaration

cs-api-definition
public TreeViewDragEventArgs(object item)

Parameters

item

object

Properties

DestinationComponentId

The Id of the TreeView component over which the item is dragged.

Declaration

cs-api-definition
public string DestinationComponentId { get; set; }

Property Value

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

cs-api-definition
public string DestinationIndex { get; set; }

Property Value

string

DestinationItem

The treeview item over which the item is dragged.

Declaration

cs-api-definition
public object DestinationItem { get; set; }

Property Value

object

DestinationTreeView

The treeview reference over which the item is dragged.

Declaration

cs-api-definition
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

cs-api-definition
public TreeViewDropPosition? DropPosition { get; set; }

Property Value

TreeViewDropPosition?

PageX

The X coordinates of the mouse.

Declaration

cs-api-definition
public double PageX { get; set; }

Property Value

double

PageY

The Y coordinates of the mouse.

Declaration

cs-api-definition
public double PageY { get; set; }

Property Value

double