Supplies information about RadzenDropZoneContainer CanDrop function and RadzenDropZone Drop event.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class RadzenDropZoneItemEventArgs<TItem>| Name | Description |
|---|---|
| TItem |
Supplies information about RadzenDropZoneContainer CanDrop function and RadzenDropZone Drop event.
public RadzenDropZoneItemEventArgs<TItem>()The data that underlies a drag-and-drop operation, known as the drag data store. See DataTransfer.
public DataTransfer DataTransfer { get; set; }
| Type | Description |
|---|---|
| DataTransfer | The data that underlies a drag-and-drop operation, known as the drag data store. See DataTransfer. |
Gets the dragged item zone.
public RadzenDropZone<TItem> FromZone { get; }
| Type | Description |
|---|---|
| RadzenDropZone<TItem> | Gets the dragged item zone. |
Gets the dragged item.
public TItem Item { get; }
| Type | Description |
|---|---|
| TItem | Gets the dragged item. |
Gets the dropped item.
public TItem ToItem { get; }
| Type | Description |
|---|---|
| TItem | Gets the dropped item. |
Gets the drop zone.
public RadzenDropZone<TItem> ToZone { get; }
| Type | Description |
|---|---|
| RadzenDropZone<TItem> | Gets the drop zone. |