ImageGlass.ImageBox.EndUpdate C# (CSharp) Method

EndUpdate() public method

Enables the redrawing of the image box
public EndUpdate ( ) : void
return void
        public virtual void EndUpdate()
        {
            if (_updateCount > 0)
            {
                _updateCount--;
            }

            if (AllowPainting)
            {
                Invalidate();
            }
        }
ImageBox