namespace PaintDotNet.Measurement.Enum
{
public enum HistoryFunctionResult
{
///
/// The HistoryFunction completed successfully, and a new item has been placed in to the HistoryStack.
///
Success,
///
/// The HistoryFunction completed successfully, but did nothing.
///
SuccessNoOp,
///
/// The HistoryFunction was cancelled by the user. No changes have been made.
///
Cancelled,
///
/// There was not enough memory to execute the HistoryFunction. No changes have been made.
///
OutOfMemory,
///
/// There was an error executing the HistoryFunction. No changes have been made.
///
NonFatalError
}
}