GINO Graphics Suite - GINO v9.0  

gEnqFontNameList

Syntax

[C/C++:]
void gEnqFontNameList(char *list[], int n, int *count, int len);
[F90:]
subroutine gEnqFontNameList(list, n, count)

character*(*), intent(out) :: list(*)
integer, intent(in) :: n
integer, intent(out) :: count

Arguments

list
Array containing font names

n
Number of elements in list

count
Number of font names actually available

len
Number of characters in each element of array list (C/C++ only)

Description

The routine gEnqFontNameList() returns a list of font names that the current device has available and that may be selected using the routine gSetCharFontName().

The character array list should be able to store at least 32 characters and the user should set n to be the size of that array. No more than n font names will be returned. The actual number of font names available is returned in count whether this is larger or smaller than n.

See Also

gEnqFontNameList Usage
gSetCharFontName