Class
TreeListRowDropEventArgs<TItem>

The class that describes the event arguments to the treelist row drop event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

cs-api-definition
public class TreeListRowDropEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTreeListRowDropEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

TreeListRowDropEventArgs()

Declaration

cs-api-definition
public TreeListRowDropEventArgs()

Properties

DestinationComponentId

The Id of the component over which the item is dropped.

Declaration

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

Property Value

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

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

Property Value

string

DestinationItem

Defines the destination item over which the row was dropped.

Declaration

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

Property Value

TItem

DestinationTreeList

Defines the TreeList reference where item is dropped. Useful when dragging between different treelist components.

Declaration

cs-api-definition
public TelerikTreeList<TItem> DestinationTreeList { get; set; }

Property Value

TelerikTreeList<TItem>

DropPosition

Defines the drop position TreeListRowDropPosition. Supported values are Before, After and Over.

Declaration

cs-api-definition
public TreeListRowDropPosition DropPosition { get; set; }

Property Value

TreeListRowDropPosition

Item

Defines the dropped row item.

Declaration

cs-api-definition
public TItem Item { get; set; }

Property Value

TItem

Items

A collection of all dragged items.

Declaration

cs-api-definition
public IEnumerable<TItem> Items { get; set; }

Property Value

IEnumerable<TItem>