Dropped Event
This event occurs when a drag and drop operation is used to drop the item.
A DroppedEvent object is passed as an argument to the OnDropped event handler.
It may occur multiple times depending on the dropped content. For example, if multiple files are dropped from Explorer, the event will occur several times for that file.
The event also occurs when the text data and the file are dropped at the same time.
Example of use
Function OnDropped(e) {
switch (e.Type) {
case $STRING:
print(e.Data, "\n");
break;
case $FILE:
print(e.Data.PathName, "\n");
break;
}
}
Added since Ver.4.1.0
Not supported in Mobile, AI