Ejemplo n.º 1
0
 public void LoadFont(string flfFontFile)
 {
     _font = new FigletFont(flfFontFile);
 }
Ejemplo n.º 2
0
 public Figlet()
 {
     _font = new FigletFont();
 }
Ejemplo n.º 3
0
 public Figlet()
 {
     _font = new FigletFont();
 }
Ejemplo n.º 4
0
 public void LoadFont(string flfFontFile)
 {
     _font = new FigletFont(flfFontFile);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Loads a .flf font file.
 /// First version used in: 1.0.
 /// NEW IN VERSION 1.1: Now returns _font for debugging.
 /// </summary>
 /// <param name="flfFontFile">The path to the file to load. These are at jave.de/figlet/fonts.html.</param>
 public FigletFont LoadFont(string flfFontFile)
 {
     _font = new FigletFont(flfFontFile);
     return _font;
 }