AddImage() public method

public AddImage ( string ImagePath ) : void
ImagePath string
return void
Ejemplo n.º 1
0
 public void AddGlyph(string Unicode, string ImagePath)
 {
     Glyph G = new Glyph();
     G.FontID = this.ID;
     G.Unicode = Unicode;
     G.Save(false);
     G.AddImage(ImagePath);
     Glyphs.Add(G);
 }
Ejemplo n.º 2
0
        public void AddGlyph(string Unicode, string ImagePath)
        {
            Glyph G = new Glyph();

            G.FontID  = this.ID;
            G.Unicode = Unicode;
            G.Save(false);
            G.AddImage(ImagePath);
            Glyphs.Add(G);
        }