Class DropEventArgs<T>
Interface for drop event.
Inheritance
System.Object
DropEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class DropEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T |
Constructors
DropEventArgs()
Declaration
public DropEventArgs()
Properties
Cancel
Used to prevent the drop action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrentIndex
Specifies the drop item index.
Declaration
public double CurrentIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
DroppedElement
Specifies the drop element.
Declaration
public DOM DroppedElement { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Helper
Specifies the helper element.
Declaration
public DOM Helper { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Items
Specifies the dragged items data.
Declaration
public IEnumerable<T> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> |
PreviousIndex
Specifies the drag item index.
Declaration
public double PreviousIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Target
Specifies the target element.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |