Ejemplo n.º 1
0
            //////////////////////////////////////////////////////////////////////////
            public void Paint(Graphics G, float Y)
            {
                float X = 0;

                foreach (TextElement El in Elements)
                {
                    El.Paint(G, X, Y);
                    X += El.Size.Width;
                }
            }