Documents Collection¶
Documents collection provides a collection of document objects in a frame window. Retrieves the number of documents. Retrieves the document object for the document of the specified index. Supported on EmEditor Professional Version 5.00 or later.Properties¶
Examples¶
[JavaScript]¶
docs = new Enumerator( editor.Documents );
for( ; !docs.atEnd(); docs.moveNext() ){
doc = docs.item();
alert( doc.Name );
}
[VBScript]¶
For Each doc In editor.Documents
alert doc.FullName
Next
Version¶