/// <summary>
 /// Finds the specified font family.
 /// </summary>
 /// <param name="fontFamily">The font family.</param>
 /// <returns>The family if installed otherwise null</returns>
 public FontFamily Find(string fontFamily) => collection.Find(fontFamily);
示例#2
0
 internal IFontInstance Find(FontStyle style)
 {
     return(collection.Find(this.Name, style));
 }