FontList collection provides a collection of FontItem objects.
| Count | Retrieves the number of items. |
| Item | Retrieves the FontItem object for the specified index. |
list = new Enumerator( document.Config.Font.DisplayList );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Name );
}
For Each item In document.Config.Font.DisplayList
alert item.Name
Next
Supported on EmEditor Professional Version 7.00 or later.