BitMiracle.LibJpeg.Classic.jpeg_progress_mgr.Updated C# (CSharp) Méthode

Updated() public méthode

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
Résultat void
        public void Updated()
        {
            if (OnProgress != null)
                OnProgress(this, new EventArgs());
        }
    }
jpeg_progress_mgr