ComponentFactory.Krypton.Toolkit.ViewDrawGroupBoxDocker.RenderAfter C# (CSharp) Method

RenderAfter() public method

Perform rendering after child elements are rendered.
public RenderAfter ( RenderContext context ) : void
context RenderContext Rendering context.
return void
        public override void RenderAfter(RenderContext context)
        {
            Debug.Assert(context != null);

            // Validate incoming reference
            if (context == null) throw new ArgumentNullException("context");

            base.RenderAfter(context);

            // Restore original client rectangle
            if (this[0].Visible)
                ClientRectangle = _cacheClientRect;
        }