function enumFonts()
{
var dictionary = appUtils.enumFonts();
if (dictionary)
{
var fontList = dictionary.allKeys();
var count = fontList.count;
for (var i = 0; i < count; ++i)
{
shell.print(fontList.getValue(i));
}
}
}