예제 #1
0
파일: Figlet.cs 프로젝트: brianlowe/FIGlet
 public void LoadFont(string flfFontFile)
 {
     _font = new FigletFont(flfFontFile);
 }
예제 #2
0
파일: Figlet.cs 프로젝트: brianlowe/FIGlet
 public Figlet()
 {
     _font = new FigletFont();
 }
예제 #3
0
 public Figlet()
 {
     _font = new FigletFont();
 }
예제 #4
0
 public void LoadFont(string flfFontFile)
 {
     _font = new FigletFont(flfFontFile);
 }
예제 #5
0
파일: Figlet.cs 프로젝트: colt05/FIGlet
 /// <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;
 }