File: src\Framework\System\Windows\Documents\RtfToXamlError.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
//---------------------------------------------------------------------------
// 
// File: RtfToXamlError.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// Description: Define the RtfToXaml conversion errors.
//
//---------------------------------------------------------------------------
 
namespace System.Windows.Documents
{
    /// <summary>
    /// RtfToXaml content converting error enumeration.
    /// </summary>
    internal enum RtfToXamlError
    {
        None,
        InvalidFormat,
        InvalidParameter,
        InsufficientMemory,
        OutOfRange
    }
}