Interface DropMoveHandler
- All Superinterfaces:
 EventHandler
- 
Method Summary
Modifier and TypeMethodDescriptionvoidonDropMove(DropMoveEvent event) Executed whenever the compatible dragged object is moved over this drop target. 
- 
Method Details
- 
onDropMove
Executed whenever the compatible dragged object is moved over this drop target. You can use this to show a custom visual indication of where the drop would occur within the widget, or to show theno-drop cursorto indicate that this is not a valid drop target, typically ifwillAcceptDrop()returns false.For details on showing a 'no drop' cursor when the user drags over all invalid drop targets, see
showNoDropIndicator.- Parameters:
 event- the event
 
 -