HistoryFunctionResult.cs 880 B

123456789101112131415161718192021222324252627282930
  1. namespace PaintDotNet.Measurement.Enum
  2. {
  3. public enum HistoryFunctionResult
  4. {
  5. /// <summary>
  6. /// The HistoryFunction completed successfully, and a new item has been placed in to the HistoryStack.
  7. /// </summary>
  8. Success,
  9. /// <summary>
  10. /// The HistoryFunction completed successfully, but did nothing.
  11. /// </summary>
  12. SuccessNoOp,
  13. /// <summary>
  14. /// The HistoryFunction was cancelled by the user. No changes have been made.
  15. /// </summary>
  16. Cancelled,
  17. /// <summary>
  18. /// There was not enough memory to execute the HistoryFunction. No changes have been made.
  19. /// </summary>
  20. OutOfMemory,
  21. /// <summary>
  22. /// There was an error executing the HistoryFunction. No changes have been made.
  23. /// </summary>
  24. NonFatalError
  25. }
  26. }