package js.html
Available on js
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:
read onlykind:StringThe kind of drag data item, string or file.
read onlytype:StringThe drag data item's type, typically a MIME type.
getAsFile():FileReturns 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):VoidInvokes the specified callback with the drag data item string as its argument.
Throws:
null |
DOMError |
|---|
© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/DataTransferItem.html