ComponentFactory.Krypton.Toolkit.ViewLayoutScrollViewport.NeedPaint C# (CSharp) Method

NeedPaint() protected method

Requests a paint and optional layout of the control.
protected NeedPaint ( bool needLayout ) : void
needLayout bool Is a layout required.
return void
        protected void NeedPaint(bool needLayout)
        {
            // Request a layout be performed immediately
            if (_needPaintDelegate != null)
                _needPaintDelegate(this, new NeedLayoutEventArgs(needLayout));
        }