Go to the first, previous, next, last section, table of contents.


Looking up Font Names

Function: x-list-font pattern &optional face frame maximum
This function returns a list of available font names that match pattern. If the optional arguments face and frame are specified, then the list is limited to fonts that are the same size as face currently is on frame.

The argument pattern should be a string, perhaps with wildcard characters: the `*' character matches any substring, and the `?' character matches any single character. Pattern matching of font names ignores case.

If you specify face and frame, face should be a face name (a symbol) and frame should be a frame.

The optional argument maximum sets a limit on how many fonts to return. If this is non-nil, then the return value is truncated after the first maximum matching fonts. Specifying a small value for maximum can make this function much faster, in cases where many fonts match the pattern.


Go to the first, previous, next, last section, table of contents.