Exports the collection to a TSV file.
list.Export( strFileName );
list.Export strFileName
strFileName
Specifies the file name including the full path of the TSV file.
var filters = document.filters;
if( filters.Count > 0 ) {
filters.Export( "E:\\Test\\filter.tsv" );
}
Set filters = document.filters
If filters.Count > 0 Then
filters.Export "E:\Test\filter.tsv"
End If
Supported on EmEditor Professional Version 16.0 or later.