Exemplo n.º 1
0
        private static void InsertElement(ElementGroup line, Element el, Graphics gfx, ref PointF pt, float preX, float postX)
        {
            line.Add(el);

            pt.X += preX;

            pt = el.Prepare(gfx, pt);

            pt.X += postX;
        }
Exemplo n.º 2
0
        private static void InsertElement( ElementGroup line, Element el, Graphics gfx, ref PointF pt, float preX, float postX )
        {
            line.Add( el );

            pt.X += preX;

            pt = el.Prepare( gfx, pt );
            
            pt.X += postX;
        }