DroppedFiles collection provides a collection of the names of dropped files in a frame window.
| Count | Retrieves the number of dropped files. |
| Item | Retrieves the file names for the dropped file of the specified index. |
files = new Enumerator( DroppedFiles );
for( ; !files.atEnd(); files.moveNext() ){
alert( files.item() );
}
For Each str In DroppedFiles
alert str
Next
Supported on EmEditor Professional Version 8.00 or later.