Paint.PaintApp.RestoreSavePoint C# (CSharp) Method

RestoreSavePoint() public method

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
return void
        public void RestoreSavePoint(int savePoint)
        {
            this.RenderImage(this.InMemoryCanvasRenderTarget, this.undoRedoRenderTargets[savePoint]);
        }