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