Find all the fonts with a given name.

 

   

Syntax
 

[C#]
static XFont[] FindByName(string name)
static XFont[] FindByName(string name, Store store)

 

   

Params
 
Name Description
name The name of the font.
store A font store to use in addition to the fonts installed on the system. Null values are ignored.
return The set of matching fonts.

 

   

Notes
 

This function finds all the fonts with a given name.

Note that each font may contain many different names. Some names are more unique than others. So it is good to be as specific as possible when searching by name.

 

   

Example
 

None.