Delegate DropZone.TryGetDroppableFromPathHandler
Delegate used to find any droppable object(s) that can be dropped on the target using the current drag and drop path data.
Namespace: Unity.AppUI.UI
Assembly: Unity.AppUI.dll
Syntax
public delegate bool DropZone.TryGetDroppableFromPathHandler(string path, out object droppable)
Parameters
| Type | Name | Description |
|---|---|---|
| string | path | The path data from the current drag and drop operation. |
| object | droppable | The droppable object(s) found. |
Returns
| Type | Description |
|---|---|
| bool | True if the target accepts the drag, false otherwise. |