The DataTransferItem object represents one drag data item. During a drag operation, each drag event has a dataTransfer property which contains a list of drag data items. Each item in the list is a DataTransferItem object.
Documentation DataTransferItem by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Variables
Methods
getAsFile():File
Returns the File object associated with the drag data item (or null if the drag item is not a file).
Throws:
null | DOMError |
|---|
getAsString(callback:String ‑> Void):Void
Invokes the specified callback with the drag data item string as its argument.
Throws:
null | DOMError |
|---|