WebDragItem

From Xojo Documentation

Class (inherits from Object)


New in 2015r3

Contains the details for a control that was dragged and now dropped onto another control.

Properties
OriginX fa-lock-32.png Sender fa-lock-32.png
OriginY fa-lock-32.png Tag fa-lock-32.png


Methods
Picture RawData Text
PictureAvailable RawDataAvailable TextAvailable

Notes

  • Internet Explorer 9 does not provide drag previews, although the correct cursor appears.

Constants

  • DragActionNone = 0
  • DragActionCopy = 1
  • DragActionMove = 2
  • DragActionLink = 4
  • DragActionUnknown = 8 (for drags from outside the browser)
  • DragActionAll = 15 (this may change in the future as browsers support more drag types)

To combine multiple drag actions, add them together. For example, to create an action that supports both copy and move:

Var copyMoveAction As Integer = WebDragItem.DragActionCopy + WebDragItem.DragActionMove