Link Search Menu Expand Document

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.

Events will also occur if text data and files 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