Filters Collection¶
Filters collection provides a collection of Filter objects. Retrieves the number of items. Retrieves the Filter object for the specified index. Specifies the number of visible lines above the matched lines. Specifies the number of visible lines below the matched lines. Adds an item. Adds an item for a search. Adds an item for a replace. Removes all items in the collection. Exports the collection to a TSV file. Imports a TSV file to the collection. Removes an item. Supported on EmEditor Professional Version 16.0 or later.Properties¶
Methods¶
Examples¶
[JavaScript]¶
list = new Enumerator( document.filters );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Value );
}
[VBScript]¶
For Each item In document.filters
alert item.Value
Next
Version¶