CsvList 集合¶
CsvList 集合提供 Csv 对象 的集合。 检索 Csv 对象的数目。 检索指定索引的 Csv 对象。 添加一个项目。 插入一个项目。 删除一个项目。 将集合重置为默认值。 支持 EmEditor 19.4 或之后的版本。属性¶
方法¶
示例¶
[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
版本¶