Beispiel #1
0
 public void Derive(int new_size)
 {
     Size = new_size;
     LFont.Dispose();
     LFont = Graphics.NewFont(Path, Size);
 }
Beispiel #2
0
 public Font(string path, int size)
 {
     Path  = path;
     Size  = size;
     LFont = Graphics.NewFont(path, size);
 }