BitMiracle.LibJpeg.Classic.jpeg_progress_mgr.Updated C# (CSharp) Method

Updated() public method

Indicates that progress was changed.
Call this method if you change some progress parameters manually. This method ensures happening of the OnProgress event.
public Updated ( ) : void
return void
        public void Updated()
        {
            if (OnProgress != null)
                OnProgress(this, new EventArgs());
        }
    }
jpeg_progress_mgr