# IDropTarget

> Drop target interface.

## Definition

* **Type:** Interface
* **Namespace:** [UnityEditor.Experimental.GraphView](/engine/6000.5/script-reference/unityeditor/experimental/graphview.md)
* **Assembly:** UnityEditor

```csharp
public interface IDropTarget
```

## Methods

| Method                                                                                                           | Description                                                                                                 |
| ---------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| [CanAcceptDrop](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/canacceptdrop.md) | Indicates if the dragged source can be dropped on the target interface.                                     |
| [DragEnter](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/dragenter.md)         | This method is automatically called when the dragged source intersects the drop target.                     |
| [DragExited](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/dragexited.md)       | This method is automatically called when dragging ends and the drag source is not over a valid drop target. |
| [DragLeave](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/dragleave.md)         | This method is automatically called when the dragged source no longer intersects the drop target.           |
| [DragPerform](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/dragperform.md)     | "This method is automatically called when a drag is performed."                                             |
| [DragUpdated](/engine/6000.5/script-reference/unityeditor/experimental/graphview/idroptarget/dragupdated.md)     | This method is automatically called when the drag source is updated.                                        |
