GetFont() public méthode

Constructs a Font-object.
public GetFont ( string fontname ) : Font
fontname string the name of the font
Résultat Font
Exemple #1
0
 /// <summary>
 /// Constructs a Font-object.
 /// </summary>
 /// <param name="fontname">the name of the font</param>
 /// <param name="encoding">the encoding of the font</param>
 /// <param name="embedded">true if the font is to be embedded in the PDF</param>
 /// <param name="size">the size of this font</param>
 /// <param name="style">the style of this font</param>
 /// <param name="color">the BaseColor of this font</param>
 /// <returns>a Font object</returns>
 public static Font GetFont(string fontname, string encoding, bool embedded, float size, int style, BaseColor color)
 {
     return(fontImp.GetFont(fontname, encoding, embedded, size, style, color));
 }