GetFontList Text Query Command

GETFONTLIST Text Queries

Gets the names of all the added fonts.

getfontlist

stem/a Gets the font names.

Results:

the number of fonts is returned to RESULT.

stem

0/i The first font name.

1/i The second font name.

etc.

Examples:

getfontlist fontnames

 

GetFontList  Command Definition  url:PGScmd/getfontlist
  created:2006-03-30 22:20:07   last updated:2006-03-30 22:20:07
  Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.

User Contributed Comments For GetFontList
Tim Doty wrote...2006-04-25 04:45:10

Some more examples of usage showing the Python way of doing things:

Code:


result = GetFontList('index')
print result['index'][0]

for fontidx in result['index']:
print result['index'][fontidx]

Dan Kilroy wrote...2006-05-04 17:09:57

Script command submitted from PageStream internal documentation. Needs to be checked and merged with the command documentation above.

Gets the {...} .

count = GetFontList (&names/.0.1...)

Parameters:


Results:


Notes:


See Also:


Examples:
Python:


ARexx:

Applescript:

User Contributed Comments For GetFontList