Class ListBoxReorderEventArgs<TItem>
The class describes the event arguments of the OnReorder event.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class ListBoxReorderEventArgs<TItem> : ListBoxEventArgsBase<TItem>
Type Parameters
TItem
|
Constructors
ListBoxReorderEventArgs()
Declaration
public ListBoxReorderEventArgs()
Properties
FromIndex
The index of the first item from the items to be reordered.
Declaration
public int FromIndex { get; set; }
Property Value
System.Int32
|
ToIndex
The index of the destination item.
Declaration
public int ToIndex { get; set; }
Property Value
System.Int32
|