Class TreeListRowDropEventArgs<TItem>
The class that describes the event arguments to the treelist row drop event.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeListRowDropEventArgs<TItem> : EventArgs
Type Parameters
TItem
|
Constructors
TreeListRowDropEventArgs()
Declaration
public TreeListRowDropEventArgs()
Properties
DestinationItem
Defines the destination item over which the row was dropped.
Declaration
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
public TelerikTreeList<TItem> DestinationTreeList { get; set; }
Property Value
TelerikTreeList<TItem>
|
DropPosition
Defines the drop position TreeListRowDropPosition. Supported values are Before, After and Over.
Declaration
public TreeListRowDropPosition DropPosition { get; set; }
Property Value
TreeListRowDropPosition
|
Item
Defines the dropped row item.
Declaration
public TItem Item { get; set; }
Property Value
TItem
|
Items
A collection of all dragged items.
Declaration
public IEnumerable<TItem> Items { get; set; }
Property Value
System.Collections.Generic.IEnumerable<TItem>
|