Franken_.App_Code.Font.AddGlyph C# (CSharp) Метод

AddGlyph() публичный Метод

public AddGlyph ( string Unicode, string ImagePath ) : void
Unicode string
ImagePath string
Результат void
        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);
        }