File: src\Framework\System\Windows\Documents\RtfSuperSubscript.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
//---------------------------------------------------------------------------
// 
// File: RtfSuperSubscript.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// Description: RtfSuperSubscript enumeration.
//
//---------------------------------------------------------------------------
 
namespace System.Windows.Documents
{
    /// <summary>
    /// Rtf SuperSubscript enumeration indicates rtf superscript and subscript.
    /// </summary>
    internal enum RtfSuperSubscript
    {
        None = 0,
        Normal = 1,
        Super = 2,
        Sub = 3
    }
}