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: String
The kind of drag data item, string
or file
.
type: String
The drag data item's type, typically a MIME type.
getAsString(callback: Function): Void
Invokes the specified callback with the drag data item string as its argument.
Name | Type |
---|---|
callback |
Function |
getAsFile(): File
Returns the File
object associated with the drag data item (or null if the drag item is not a file).
Returns |
---|
File |