Paint.FilenameResolver.ImageSavePointFilename C# (CSharp) Method

ImageSavePointFilename() public method

Determines the filename to use for a 'save point' image (one of the undo/redo render targets)
public ImageSavePointFilename ( int savepoint ) : string
savepoint int save point id for this image - i.e location in the undo/redo chain
return string
        public string ImageSavePointFilename(int savepoint)
        {
            return Path.Combine(
                this.DataFolder,
                string.Format("{0}.{1}", savepoint, FileExtensionPNGImage));
        }