DataTransferItem
js.html.DataTransferItem (extern class)
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:
Instance Members
kind: StringThe kind of drag data item, string or file.
type: StringThe drag data item's type, typically a MIME type.
getAsString(callback: Function): VoidInvokes the specified callback with the drag data item string as its argument.
| Name | Type |
|---|---|
callback |
Function |
getAsFile(): FileReturns the File object associated with the drag data item (or null if the drag item is not a file).
| Returns |
|---|
| File |