public string AddEmptyGlyph(string Unicode) { Glyph G = new Glyph(); G.FontID = this.ID; G.Unicode = Unicode; G.Save(false); return G.ID; }
public string AddEmptyGlyph(string Unicode) { Glyph G = new Glyph(); G.FontID = this.ID; G.Unicode = Unicode; G.Save(false); return(G.ID); }
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); }