CsvList Collection

CsvList collection provides a collection of Csv objects.

Properties

Count

Retrieves the number of Csv objects.

Item

Retrieves the Csv object of the specified index.

Methods

Add

Adds an item.

Insert

Inserts an item.

Remove

Removes an item.

Reset

Resets the collection.

Examples

[JavaScript]

csvs = new Enumerator( editor.CsvList );
for( ; !csvs.atEnd(); csvs.moveNext() ){
item = csvs.item();
alert( item.Name );
}

[VBScript]

For Each item In editor.CsvList
alert item.Name
Next

Version

Supported on EmEditor Professional Version 19.4 or later.