|

the software that grows
with you
| |
|
V32PGetFonts()
|
| Returns a list of all installed fonts for
the specified printer. |
|
Syntax
|
| V32PGetFonts( [ncPrinter] ) |
|
Arguments
|
| Param |
Default |
Description |
| ncPrinter |
0 |
Character string representing the name of the printer
in question, either in full or partial, OR, numeric position of the
installed printers. Default is 0, means the current default
printer. |
|
|
Returns
|
| aFonts . One dimentional array of the
names of fonts available for the <ncPrinter>. |
|
Description
|
| |
|
Usage
|
| local aFonts := V32PGetFonts()
// Select a font
nFontSel := achoice( 10, 10, 20, 70, aFonts )
? aFonts[ nFontSel ]
|
|
Tips
|
| The funtion can be executed outside of
the V32PBeginDoc() and V32PEndDoc() program code. |
|