Documents collection provides a collection of document objects in a frame window.
| Count | Retrieves the number of documents. |
| Item | Retrieves the document object for the document of the specified index. |
docs = new Enumerator( editor.Documents );
for( ; !docs.atEnd(); docs.moveNext() ){
doc = docs.item();
alert( doc.Name );
}
For Each doc In editor.Documents
alert doc.FullName
Next
Supported on EmEditor Professional Version 5.00 or later.
Send feedback on this topic to Emurasoft