LayoutFarm.RenderBoxBase.ResetRootGraphics C# (CSharp) Method

ResetRootGraphics() public method

public ResetRootGraphics ( RootGraphic rootgfx ) : void
rootgfx RootGraphic
return void
        public override void ResetRootGraphics(RootGraphic rootgfx)
        {
            if (this.Root != rootgfx)
            {
                DirectSetRootGraphics(this, rootgfx);
                if (this.defaultLayer != null)
                {
                    foreach (var r in defaultLayer.GetRenderElementIter())
                    {
                        r.ResetRootGraphics(rootgfx);
                    }
                }
            }
        }
        public override void AddChild(RenderElement renderE)