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:
public class TreeListRowDropEventArgs<TItem> : EventArgs
Inheritance: objectEventArgsTreeListRowDropEventArgs<TItem>
Inherited Members
Constructors
public TreeListRowDropEventArgs()
Properties
The Id of the component over which the item is dropped.
public string DestinationComponentId { get; set; }
Defines the destination index inside the component over which the item is dropped. Index is in a format definend by the destination component.
public string DestinationIndex { get; set; }
DestinationItem
TItem
Defines the destination item over which the row was dropped.
public TItem DestinationItem { get; set; }
Defines the TreeList reference where item is dropped. Useful when dragging between different treelist components.
public TelerikTreeList<TItem> DestinationTreeList { get; set; }
Defines the drop position TreeListRowDropPosition. Supported values are Before, After and Over.
public TreeListRowDropPosition DropPosition { get; set; }
Item
TItem
Defines the dropped row item.
public TItem Item { get; set; }
Items
IEnumerable<TItem>
A collection of all dragged items.
public IEnumerable<TItem> Items { get; set; }