Navigation
API > API/Runtime > API/Runtime/UMG > API/Runtime/UMG/Blueprint > API/Runtime/UMG/Blueprint/UUserWidget
References
| Module | UMG |
| Header | /Engine/Source/Runtime/UMG/Public/Blueprint/UserWidget.h |
| Include | #include "Blueprint/UserWidget.h" |
UFUNCTION (BlueprintImplementableEvent, BlueprintCosmetic, Category="Drag and Drop")
bool OnDragOver
(
FGeometry MyGeometry,
FPointerEvent PointerEvent,
UDragDropOperation * Operation
)
Remarks
Called during drag and drop when the the mouse is being dragged over a widget. 'true' to indicate that you handled the drag over operation. Returning 'false' will cause the operation to continue to bubble up.
Parameters
| Name | Description |
|---|---|
| MyGeometry | The geometry of the widget receiving the event. |
| PointerEvent | The mouse event from when the drag occurred over the widget. |
| Operation | The drag operation over the widget. |