Paint.ImageStateData.ResetLastSavePoint C# (CSharp) Méthode

ResetLastSavePoint() public méthode

Resets the last save point to be the same as the current save point e.g. if user presses undo and then alters the image then we need to throw away future redo images - i.e. reset the lastSavePoint that we can go back to as the current save point
public ResetLastSavePoint ( ) : void
Résultat void
        public void ResetLastSavePoint()
        {
            this.LastSavePoint = this.CurrentSavePoint;
        }