Item Property (Documents Collection)¶
Retrieves the document object for the document of the specified index. Index Specifies the index of the document as a one-based integer. Supported on EmEditor Professional Version 5.00 or later.¶
[JavaScript]¶
doc = editor.Documents.Item( Index );
[VBScript]¶
doc = editor.Documents.Item( Index )
Parameters¶
Examples¶
[JavaScript]¶
alert( "Full Name for the first document: " + editor.Documents.Item(1).FullName );
[VBScript]¶
alert "Full Name for the first document: " & editor.Documents.Item(1).FullName
Version¶