Paint.PictureStateManager.LoadSavePointData C# (CSharp) Method

LoadSavePointData() private method

Loads the save point data. Loads the CanvasRecorder file from the working folder Gets the image from the specific in memory rendertarget and draws that to the master canvas (rendertarget)
private LoadSavePointData ( ) : void
return void
        private void LoadSavePointData()
        {
            var canvasRecorderFile = this.filenameResolver.WorkingCanvasRecorderFilename(this.ImageStateData.CurrentSavePoint);
            this.canvasRecorder.Load(canvasRecorderFile);

            this.renderTargetHandler.RestoreSavePoint(this.ImageStateData.CurrentSavePoint);
        }