Documents コレクション¶
Documents コレクションは、フレーム ウィンドウに表示されている文書 ( Document オブジェクト) のコレクションを提供します。 文書の数を取得します。 指定するインデックスの文書の Document オブジェクトを取得します。 EmEditor Professional Version 5.00 以上で利用できます。プロパティ¶
例¶
[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
バージョン¶