Dropped Event
It is an event that occurs when it is dropped by drag and drop operation.
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
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