Save() public method

public Save ( bool IncludeChildren ) : void
IncludeChildren bool
return void
Example #1
0
 public string AddEmptyGlyph(string Unicode)
 {
     Glyph G = new Glyph();
     G.FontID = this.ID;
     G.Unicode = Unicode;
     G.Save(false);
     return G.ID;
 }
Example #2
0
        public string AddEmptyGlyph(string Unicode)
        {
            Glyph G = new Glyph();

            G.FontID  = this.ID;
            G.Unicode = Unicode;
            G.Save(false);
            return(G.ID);
        }
Example #3
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);
 }
Example #4
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);
        }