Class ListBoxDropEventArgs<TItem>
The class describes the event arguments of the OnDrop event.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class ListBoxDropEventArgs<TItem> : ListBoxEventArgsBase<TItem>
Type Parameters
TItem
|
Constructors
ListBoxDropEventArgs()
Declaration
public ListBoxDropEventArgs()
Properties
DestinationIndex
Defines the destination index inside the list box over which the item is dropped.
Declaration
public Nullable<int> DestinationIndex { get; set; }
Property Value
System.Nullable<System.Int32>
|
DestinationListBoxId
The id of the component from which the dropped item was dragged from.
Declaration
public string DestinationListBoxId { get; set; }
Property Value
System.String
|