Paint.PaintApp.RestoreSavePoint C# (CSharp) Méthode

RestoreSavePoint() public méthode

Restore the image held in the specified save point to the canvas/display
public RestoreSavePoint ( int savePoint ) : void
savePoint int specific save point we wish to restore
Résultat void
        public void RestoreSavePoint(int savePoint)
        {
            this.RenderImage(this.InMemoryCanvasRenderTarget, this.undoRedoRenderTargets[savePoint]);
        }