possible to handle the end of drag and drop operation?

Is it possible to handle the end of the drag and drop operation in all other scenarios when it is not handled by the onDrop override of some widget.

like for example in these scenarios:

  1. drag and drop operation ends on a screen without widgets
  2. drag and drop operation ends on a widget that doesn’t have onDrop override implemented

Thanks

You can bind the OnDragCancelled event from the operation reference, which is called if it is not handled by a OnDrop, or I believe one that returns false.

Great, thanks.