AlphaTab.Rendering.Glyphs.Glyph.DoLayout C# (CSharp) Method

DoLayout() public method

public DoLayout ( ) : void
return 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