Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest > API/Plugins/NetcodeUnitTest/UI > API/Plugins/NetcodeUnitTest/UI/SMultiSelectTableRow
- SWidget::OnDragDetected()
- STableRow::OnDragDetected()
- SMultiSelectTableRow::OnDragDetected()
References
Module | NetcodeUnitTest |
Header | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/UI/SMultiSelectTableRow.h |
Include | #include "UI/SMultiSelectTableRow.h" |
virtual FReply OnDragDetected
&40;
const FGeometry & MyGeometry,
const FPointerEvent & MouseEvent
&41;
Remarks
Called when Slate detects that a widget started to be dragged. Usage: A widget can ask Slate to detect a drag. OnMouseDown() reply with FReply::Handled().DetectDrag( SharedThis(this) ). Slate will either send an OnDragDetected() event or do nothing. If the user releases a mouse button or leaves the widget before a drag is triggered (maybe user started at the very edge) then no event will be sent.
Parameters
Name | Description |
---|---|
InMyGeometry | Widget geometry |
InMouseEvent | MouseMove that triggered the drag |