HighlightList Collection¶
HighlightList collection provides a collection of HighlightItem objects. Retrieves the number of items. Retrieves the HighlightItem object for the specified index. Adds an item. Removes an item. Supported on EmEditor Professional Version 7.00 or later.Properties¶
Methods¶
Examples¶
[JavaScript]¶
list = new Enumerator( document.Config.Highlight.List );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Name );
}
[VBScript]¶
For Each item In document.Config.Highlight.List
alert item.Name
Next
Version¶