FontList 集合¶
FontList 集合提供 FontItem 对象 的集合。 检索项目数量。 为指定的索引检索 FontItem 对象。 支持 EmEditor 7.00 或之后的版本。属性¶
示例¶
[JavaScript]¶
list = new Enumerator( document.Config.Font.DisplayList );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Name );
}
[VBScript]¶
For Each item In document.Config.Font.DisplayList
alert item.Name
Next
版本¶