AlphaTab.Rendering.Glyphs.Glyph.DoLayout C# (CSharp) Méthode

DoLayout() public méthode

public DoLayout ( ) : void
Résultat void
        public virtual void DoLayout()
        {
        }

Usage Example

 public override void AddGlyph(Glyph g)
 {
     g.X = Glyphs.Count == 0
         ? 0
         : (Glyphs[Glyphs.Count - 1].X + Glyphs[Glyphs.Count - 1].Width);
     g.Renderer = Renderer;
     g.DoLayout();
     Width = g.X + g.Width;
     base.AddGlyph(g);
 }
All Usage Examples Of AlphaTab.Rendering.Glyphs.Glyph::DoLayout