Mono.Terminal.Container.RedrawChildren C# (CSharp) Метод

RedrawChildren() публичный Метод

Used to redraw all the children in this container.
public RedrawChildren ( ) : void
Результат void
        public void RedrawChildren()
        {
            foreach (Widget w in widgets){
                // Poor man's clipping.
                if (w.x >= this.w - Border * 2)
                    continue;
                if (w.y >= this.h - Border * 2)
                    continue;

                w.Redraw ();
            }
        }