Exemplo n.º 1
0
        override internal void DrawNodes(Graphic g)
        {
            if (fastMode == false)
            {
                base.DrawNodes(g);

                HTDrawNode child = null;
                for (IEnumerator i = Children(); i.MoveNext();)
                {
                    child = (HTDrawNode)i.Current;
                    child.DrawNodes(g);
                }
            }
        }
Exemplo n.º 2
0
 internal void DrawNodes(Graphic g)
 {
     drawRoot.DrawNodes(g);
 }