RtfControls.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / RtfControls.cs / 1 / RtfControls.cs

                            //---------------------------------------------------------------------------- 
//
// File: RtfControls.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved. 
//
// Description: Rtf controls that specify Rtf control and control word information. 
// 
//---------------------------------------------------------------------------
 
namespace System.Windows.Documents
{
    /// 
    /// Rtf controls and control word information. 
    /// 
    internal static class RtfControls 
    { 
        // Flags used for controlwords
        public const uint RTK_TOGGLE = 0x00000001; 
        public const uint RTK_FLAG = 0x00000002;
        public const uint RTK_VALUE = 0x00000004;
        public const uint RTK_DESTINATION = 0x00000008;
        public const uint RTK_SYMBOL = 0x00000010; 
        public const uint RTK_PARAM = 0x00000020;
        public const uint RTK_TEXT = 0x00000040; 
 
        public const uint RTK_ACHARPROPS = 0x00000080;
        public const uint RTK_CHARPROPS = 0x00000100; 
        public const uint RTK_PARAPROPS = 0x00000200;
        public const uint RTK_OBJPROPS = 0x00000400;
        public const uint RTK_BOOKMARKPROPS = 0x00000800;
        public const uint RTK_SECTIONPROPS = 0x00001000; 
        public const uint RTK_DOCPROPS = 0x00002000;
        public const uint RTK_FILEPROPS = 0x00004000; 
        public const uint RTK_COMMENT = 0x00008000; 
        public const uint RTK_STYLE = 0x00010000;
        public const uint RTK_FONTTABLE = 0x00020000; 
        public const uint RTK_COLORTABLE = 0x00040000;
        public const uint RTK_BULLETS = 0x00080000;
        public const uint RTK_TABLEDEF = 0x00100000;
        public const uint RTK_SHAPES = 0x00200000; 
        public const uint RTK_POSOBJ = 0x00400000;
        public const uint RTK_BORDER = 0x00800000; 
        public const uint RTK_SHADING = 0x01000000; 
        public const uint RTK_PICT = 0x02000000;
        public const uint RTK_FIELD = 0x04000000; 
        public const uint RTK_FORMFIELD = 0x08000000;
        public const uint RTK_INDEX = 0x10000000;
        public const uint RTK_DRAWOBJ = 0x20000000;
        public const uint RTK_INFO = 0x40000000; 
        public const uint RTK_LISTTABLE = 0x80000000;
        public const uint RTK_PICTPROPS = 0x80000000; 
        public const uint RTK_CHARSET = 0x80000000; 
        public const uint RTK_UNICODE = 0x80000000;
        public const uint RTK_TABS = 0x80000000; 
        public const uint RTK_FOOTNOTES = 0x80000000;
        public const uint RTK_HIGHLIGHT = 0x80000000;
        public const uint RTK_FILETABLE = 0x80000000;
        public const uint RTK_HEADER = 0x80000000; 
        public const uint RTK_OBJECTS = 0x80000000;
        public const uint RTK_PARATEXT = 0x80000000; 
        public const uint RTK_SPECIAL = 0x80000000; 
        public const uint RTK_SECTION = 0x80000000;
        public const uint RTK_TOC = 0x80000000; 

        //-----------------------------------------------------
        //
        //  Internal Const ControlWordInfo 
        //
        //----------------------------------------------------- 
 
        #region Internal Const
 
        internal static RtfControlWordInfo[] ControlTable =
        {
            new RtfControlWordInfo(RtfControlWord.Ctrl_AB, "ab", RTK_ACHARPROPS | RTK_TOGGLE),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ABSH, "absh", RTK_POSOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ABSLOCK, "abslock", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "absnoovrlp", RTK_POSOBJ | RTK_TOGGLE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "absw", RTK_POSOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "acaps", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "acccomma", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "accdot", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "accnone", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "acf", RTK_ACHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "additive", RTK_STYLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "adjustright", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "adn", RTK_ACHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aenddoc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aendnotes", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aexpnd", RTK_ACHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "af", RTK_ACHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "affixed", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "afs", RTK_ACHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnbj", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftncn", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnalc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnar", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnauc", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnchi", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnchosung", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnncnum", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnndbar", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnndbnum", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnndbnumd", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnndbnumk", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnndbnumt", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnganada", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnngbnum", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnngbnumd", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnngbnumk", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnngbnuml", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnrlc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnruc", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnzodiac", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnzodiacd", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnnzodiacl", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnrestart", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnrstcont", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnsep", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnsepc", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftnstart", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aftntj", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ai", RTK_ACHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "alang", RTK_ACHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "allprot", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "alntblind", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "alt", RTK_STYLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "animtext", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "annotation", RTK_COMMENT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "annotprot", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ANSI, "ansi", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ANSICPG, "ansicpg", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aoutl", RTK_ACHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ascaps", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ashad", RTK_ACHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aspalpha", RTK_PARAPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aspnum", RTK_PARAPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ASTRIKE, "astrike", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atnauthor", RTK_COMMENT | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atnicn", RTK_COMMENT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atnid", RTK_COMMENT | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atnref", RTK_COMMENT | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atntime", RTK_COMMENT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atrfend", RTK_COMMENT | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "atrfstart", RTK_COMMENT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aul", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "auld", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "auldb", RTK_ACHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aulnone", RTK_ACHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aulw", RTK_ACHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "aup", RTK_ACHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "author", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_B, "b", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "background", RTK_SHAPES | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bdbfhdr", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bdrrlswsix", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgbdiag", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgcross", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdcross", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkbdiag", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkcross", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkdcross", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkfdiag", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkhoriz", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgdkvert", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgfdiag", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bghoriz", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bgvert", RTK_PARAPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BIN, "bin", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "binfsxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "binsxn", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bkmkcolf", RTK_BOOKMARKPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bkmkcoll", RTK_BOOKMARKPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BKMKEND, "bkmkend", RTK_BOOKMARKPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bkmkpub", RTK_OBJPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BKMKSTART, "bkmkstart", RTK_BOOKMARKPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bliptag", RTK_PICTPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "blipuid", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "blipupi", RTK_PICTPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BLUE, "blue", RTK_COLORTABLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BOX, "box", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRART, "brdrart", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRB, "brdrb", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRBAR, "brdrbar", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRBTW, "brdrbtw", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRCF, "brdrcf", RTK_PARAPROPS | RTK_BORDER | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDASH, "brdrdash", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDASHD, "brdrdashd", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDASHDD, "brdrdashdd", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDASHDOTSTR, "brdrdashdotstr", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDASHSM, "brdrdashsm", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDB, "brdrdb", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRDOT, "brdrdot", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDREMBOSS, "brdremboss", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRENGRAVE, "brdrengrave", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRFRAME, "brdrframe", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRHAIR, "brdrhair", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRINSET, "brdrinset", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRL, "brdrl", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDROUTSET, "brdroutset", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRNIL, "brdrnil", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTBL, "brdrtbl", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRR, "brdrr", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRS, "brdrs", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRSH, "brdrsh", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRT, "brdrt", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTH, "brdrth", RTK_PARAPROPS | RTK_BORDER | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTHTNLG, "brdrthtnlg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTHTNMG, "brdrthtnmg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTHTNSG, "brdrthtnsg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHLG, "brdrtnthlg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHMG, "brdrtnthmg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHSG, "brdrtnthsg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHTNLG, "brdrtnthtnlg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHTNMG, "brdrtnthtnmg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTNTHTNSG, "brdrtnthtnsg", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRTRIPLE, "brdrtriple", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRW, "brdrw", RTK_PARAPROPS | RTK_BORDER | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRWAVY, "brdrwavy", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRDRWAVYDB, "brdrwavydb", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "brkfrm", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_BRSP, "brsp", RTK_PARAPROPS | RTK_BORDER | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_BULLET, "bullet", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "buptim", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "bxe",  RTK_INDEX | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "caps", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "category", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CB, "cb", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CBPAT, "cbpat", RTK_PARAPROPS | RTK_SHADING | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cchs", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CELL, "cell", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CELLX, "cellx", RTK_TABLEDEF | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CF, "cf", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CFPAT, "cfpat", RTK_PARAPROPS | RTK_SHADING | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cgrid", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "charscalex", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chatn", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgbdiag", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgcross", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdcross", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkbdiag", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkcross", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkdcross", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkfdiag", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkhoriz", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgdkvert", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgfdiag", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbghoriz", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbgvert", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chbrdr", RTK_CHARPROPS | RTK_SHADING | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chcbpat", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chcfpat", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chdate", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chdpa", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chdpl", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chftn", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chftnsep", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chftnsepc", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chpgn", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chshdng", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "chtime", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGBDIAG, "clbgbdiag", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGCROSS, "clbgcross", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDCROSS, "clbgdcross", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKBDIAG, "clbgdkbdiag", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKCROSS, "clbgdkcross", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKDCROSS, "clbgdkdcross", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKFDIAG, "clbgdkfdiag", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKHOR, "clbgdkhor", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGDKVERT, "clbgdkvert", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGFDIAG, "clbgfdiag", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGHORIZ, "clbghoriz", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBGVERT, "clbgvert", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBRDRB, "clbrdrb", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBRDRL, "clbrdrl", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBRDRR, "clbrdrr", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLBRDRT, "clbrdrt", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLCBPAT, "clcbpat", RTK_TABLEDEF | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLCFPAT, "clcfpat", RTK_TABLEDEF | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLDGLL, "cldgll", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLDGLU, "cldglu", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLFITTEXT, "clfittext", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLFTSWIDTH, "clftswidth", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLMGF, "clmgf", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLMRG, "clmrg", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLOWRAP, "clowrap", RTK_TABLEDEF | RTK_FLAG | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADB, "clpadb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADFB, "clpadfb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADFL, "clpadfl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADFR, "clpadfr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADFT, "clpadft", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADL, "clpadl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADR, "clpadr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLPADT, "clpadt", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLSHDNG, "clshdng", RTK_TABLEDEF | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLSHDRAWNIL, "clshdrawnil", RTK_TABLEDEF | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLTXBTLR, "cltxbtlr", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLTXLRTB, "cltxlrtb", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLTXLRTBV, "cltxlrtbv", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLTXTBRL, "cltxtbrl", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLTXTBRLV, "cltxtbrlv", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLVERTALB, "clvertalb", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLVERTALC, "clvertalc", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLVERTALT, "clvertalt", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLVMGF, "clvmgf", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLVMRG, "clvmrg", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_CLWWIDTH, "clwwidth", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLLAPSED, "collapsed", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLNO, "colno", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLORTBL, "colortbl", RTK_COLORTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLS, "cols", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLSR, "colsr", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLSX, "colsx", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLUMN, "column", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_COLW, "colw", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "comment", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "company", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cpg", RTK_CHARSET | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "crauth", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "crdate", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "creatim", RTK_INFO | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cs", RTK_CHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ctrl", RTK_STYLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cts", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cufi", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "culi", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "curi", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "cvmme", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "datafield", RTK_FIELD | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "date", RTK_FIELD | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_DBCH, "dbch", RTK_ACHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_DEFF, "deff", RTK_FONTTABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "defformat", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_DEFLANG, "deflang", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_DEFLANGA, "deflanga", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_DEFLANGFE, "deflangfe", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "defshp", RTK_PICT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "deftab", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_DELETED, "deleted", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrauth", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrdate", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrmtxtx", RTK_POSOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrmtxty", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrstart", RTK_PARATEXT | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrstop", RTK_PARATEXT | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dfrxst", RTK_PARATEXT | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dghorigin", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dghshow", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dghspace", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dgmargin", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dgsnap", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dgvorigin", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dgvshow", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dgvspace", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dibitmap", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dn", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dntblnsbdb", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_DO, "do", RTK_DRAWOBJ | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobxcolumn", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobxmargin", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobxpage", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobymargin", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobypage", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dobypara", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "doccomm", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "doctemp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "doctype", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "docvar", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dodhgt", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dolock", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpaendhol", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpaendl", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpaendsol", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpaendw", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dparc", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dparcflipx", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dparcflipy", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpastarthol", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpastartl", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpastartsol", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpastartw", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcallout", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcoa", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcoaccent", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcobestfit", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcoborder", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcodabs", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcodbottom", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcodcenter", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcodescent", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcodtop", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcolength", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcominusx", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcominusy", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcooffset", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcosmarta", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcotdouble", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcotright", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcotsingle", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcottriple", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpcount", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpellipse", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpendgroup", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillbgcb", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillbgcg", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillbgcr", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillbggray", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillbgpal", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillfgcb", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillfgcg", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillfgcr", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillfggray", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillfgpal", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpfillpat", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpgroup", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpline", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinecob", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinecog", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinecor", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinedado", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinedadodo", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinedash", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinedot", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinegray", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinehollow", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinepal", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinesolid", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dplinew", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dppolycount", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dppolygon", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dppolyline", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpptx", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dppty", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dprect", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dproundr", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpshadow", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpshadx", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpshady", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxbtlr", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxbx", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxbxmar", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_DPTXBXTEXT, "dptxbxtext", RTK_DRAWOBJ | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxlrtb", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxlrtbv", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxtbrl", RTK_DRAWOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dptxtbrlv", RTK_DRAWOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpx", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpxsize", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpy", RTK_DRAWOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dpysize", RTK_DRAWOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dropcapli", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dropcapt", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ds", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dxfrtext", RTK_POSOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "dy", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "edmins", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "embo", RTK_CHARPROPS | RTK_SHADING | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_EMDASH, "emdash", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "emfblip", RTK_PICT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_EMSPACE, "emspace", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ENDASH, "endash", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "enddoc", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "endnhere", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "endnotes", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ENSPACE, "enspace", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_EXPND, "expnd", RTK_CHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_EXPNDTW, "expndtw", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "expshrtn", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_F, "f", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "faauto", RTK_PARAPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "facenter", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "facingp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fahang", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "falt", RTK_FONTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "faroman", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "favar", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fbias", RTK_FONTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fbidi", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fchars", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FCHARSET, "fcharset", RTK_FONTTABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fdecor", RTK_FONTTABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fet", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fetch", RTK_FONTTABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffdefres",  RTK_FORMFIELD | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffdeftext",  RTK_FORMFIELD | RTK_DESTINATION  ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffentrymcr",  RTK_FORMFIELD | RTK_DESTINATION  ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffexitmcr",  RTK_FORMFIELD | RTK_DESTINATION  ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffformat",  RTK_FORMFIELD | RTK_DESTINATION  ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffhaslistbox",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffhelptext",  RTK_FORMFIELD | RTK_DESTINATION  ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffhps",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffl",  RTK_FORMFIELD | RTK_DESTINATION  ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffmaxlen",  RTK_FORMFIELD | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffname",  RTK_FORMFIELD | RTK_DESTINATION  ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffownhelp",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffownstat",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffprot",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffrecalc",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffres",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffsize",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ffstattext",  RTK_FORMFIELD | RTK_DESTINATION  ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fftype",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fftypetxt",  RTK_FORMFIELD | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FI, "fi", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fid", RTK_FILETABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FIELD, "field", RTK_FIELD | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "file", RTK_FILETABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "filetbl", RTK_FILETABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fittext", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fldalt", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "flddirty", RTK_FIELD | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fldedit", RTK_FIELD | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FLDINST, "fldinst", RTK_FIELD | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fldlock", RTK_FIELD | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FLDPRIV, "fldpriv", RTK_FIELD | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FLDRSLT, "fldrslt", RTK_FIELD | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fldtype", RTK_FIELD | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fmodern", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fn", RTK_STYLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_FNAME, "fname", RTK_FONTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fnetwork", RTK_FILETABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fnil", RTK_FILETABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fontemb", RTK_FONTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fontfile", RTK_FONTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FONTTBL, "fonttbl", RTK_FONTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FOOTER, "footer", RTK_HEADER | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_FOOTERF, "footerf", RTK_HEADER | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_FOOTERL, "footerl", RTK_HEADER | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_FOOTERR, "footerr", RTK_HEADER | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "footery", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "footnote", RTK_FOOTNOTES | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "formdisp", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "formfield",  RTK_FORMFIELD | RTK_DESTINATION  ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "formprot", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "formshade", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fosnum", RTK_FILETABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fprq", RTK_FONTTABLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fracwidth", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frelative", RTK_FILETABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frmtxbtlr", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frmtxlrtb", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frmtxlrtbv", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frmtxtbrl", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "frmtxtbrlv", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "froman", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fromhtml", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fromtext", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_FS, "fs", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fscript", RTK_FONTTABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fswiss", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnalt", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnbj", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftncn", RTK_DOCPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnil", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnlytwnine", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnalc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnar", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnauc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnchi", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnchosung", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnncnum", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnndbar", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnndbnum", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnndbnumd", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnndbnumk", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnndbnumt", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnganada", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnngbnum", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnngbnumd", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnngbnumk", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnngbnuml", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnrlc", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnruc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnzodiac", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnzodiacd", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnnzodiacl", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnrestart", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnrstcont", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnrstpg", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnsep", RTK_DOCPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnsepc", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftnstart", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ftntj", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fttruetype", RTK_FONTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fvaliddos", RTK_FILETABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fvalidhpfs", RTK_FILETABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fvalidmac", RTK_FILETABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "fvalidntfs", RTK_FILETABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "g", RTK_CHARPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "gcw", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_GREEN, "green", RTK_COLORTABLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "gridtbl", RTK_CHARPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "gutter", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "gutterprl", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "guttersxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_HEADER, "header", RTK_HEADER | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_HEADERF, "headerf", RTK_HEADER | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_HEADERL, "headerl", RTK_HEADER | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_HEADERR, "headerr", RTK_HEADER | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "headery", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_HICH, "hich", RTK_ACHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_HIGHLIGHT, "highlight", RTK_HIGHLIGHT | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hlfr", RTK_SHAPES | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hlinkbase", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hlloc", RTK_SHAPES | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hlsrc", RTK_SHAPES | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "horzdoc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "horzsect", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hr", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "htmautsp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "htmlbase", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "htmlrtf", RTK_DOCPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "htmltag", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hyphauto", RTK_DOCPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hyphcaps", RTK_DOCPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hyphconsec", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hyphhotz", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "hyphpar", RTK_PARAPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_I, "i", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "id", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ILVL, "ilvl", RTK_PARATEXT | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_IMPR, "impr", RTK_CHARPROPS | RTK_SHADING | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "info", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_INTBL, "intbl", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ITAP, "itap", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ixe",  RTK_INDEX | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "jcompress", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "jexpand", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_JPEGBLIP, "jpegblip", RTK_PICT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "jsksu", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "keep", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "keepn", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "kerning", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "keycode", RTK_STYLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "keywords", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "ksulang", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "landscape", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LANG, "lang", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LANGFE, "langfe", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LANGFENP, "langfenp", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LANGNP, "langnp", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lbr", RTK_SYMBOL | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lchars", RTK_DOCPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LDBLQUOTE, "ldblquote", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVEL, "level", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELFOLLOW, "levelfollow", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELINDENT, "levelindent", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELJC, "leveljc", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELJCN, "leveljcn", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELLEGAL, "levellegal", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELNFC, "levelnfc", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELNFCN, "levelnfcn", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELNORESTART, "levelnorestart", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELNUMBERS, "levelnumbers", RTK_LISTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELOLD, "levelold", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELPREV, "levelprev", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELPREVSPACE, "levelprevspace", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELSPACE, "levelspace", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELSTARTAT, "levelstartat", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELTEMPLATEID, "leveltemplateid", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LEVELTEXT, "leveltext", RTK_LISTTABLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LFOLEVEL, "lfolevel", RTK_LISTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LI, "li", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LINE, "line", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linebetcol", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linecont", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linemod", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lineppage", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linerestart", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linestart", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linestarts", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linex", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linkself", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linkstyles", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "linkval", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LIN, "lin", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISA, "lisa", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISB, "lisb", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LIST, "list", RTK_LISTTABLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTHYBRID, "listhybrid", RTK_LISTTABLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTID, "listid", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTLEVEL, "listlevel", RTK_LISTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTNAME, "listname", RTK_LISTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTOVERRIDE, "listoverride", RTK_LISTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTOVERRIDECOUNT, "listoverridecount", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTOVERRIDEFORMAT, "listoverrideformat", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTOVERRIDESTART, "listoverridestart", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTPICTURE, "listpicture", RTK_LISTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTRESTARTHDN, "listrestarthdn", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTSIMPLE, "listsimple", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTTABLE, "listtable", RTK_LISTTABLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTOVERRIDETABLE, "listoverridetable", RTK_LISTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTTEMPLATEID, "listtemplateid", RTK_LISTTABLE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LISTTEXT, "listtext", RTK_PARATEXT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lnbrkrule", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lndscpsxn", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lnongrid", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LOCH, "loch", RTK_ACHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LQUOTE, "lquote", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LS, "ls", RTK_LISTTABLE | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRCH, "ltrch", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRDOC, "ltrdoc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRMARK, "ltrmark", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRPAR, "ltrpar", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRROW, "ltrrow", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_LTRSECT, "ltrsect", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lytcalctblwd", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lytexcttp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lytprtmet", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "lyttblrtgr", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_MAC, "mac", RTK_CHARSET | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "macpict", RTK_PICT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "makebackup", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "manager", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margb", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margbsxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margl", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "marglsxn", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margmirror", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margr", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margrsxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margt", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "margtsxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "mhtmltag", RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "min", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "mo", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "msmcap", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_NESTCELL, "nestcell", RTK_TABLEDEF | RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_NESTROW, "nestrow", RTK_TABLEDEF | RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_NESTTABLEPROPS, "nesttableprops", RTK_TABLEDEF | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nextfile", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nocolbal", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nocwrap", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "noextrasprl", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nofchars", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nofcharsws", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nofpages", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nofwords", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nolead", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "noline", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nolnhtadjtbl", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nonesttables", RTK_TABLEDEF | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_NONSHPPICT, "nonshppict", RTK_PICT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nooverflow", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "noproof", RTK_CHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nosectexpand", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nosnaplinegrid", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nospaceforul", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_NOSUPERSUB, "nosupersub", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "notabind", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "noultrlspc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nowidctlpar", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nowrap", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "nowwrap", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "noxlattoyen", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objalias", RTK_OBJECTS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objalign", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objattph", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objautlink", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objclass", RTK_OBJECTS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objcropb", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objcropl", RTK_OBJECTS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objcropr", RTK_OBJECTS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objcropt", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objdata", RTK_OBJECTS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "object", RTK_OBJECTS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objemb", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objh", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objhtml", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objicemb", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objlink", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objlock", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objname", RTK_OBJECTS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objocx", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objpub", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objscalex", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objscaley", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objsect", RTK_OBJECTS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objsetsize", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objsub", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objtime", RTK_OBJECTS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objtransy", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objupdate", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "objw", RTK_OBJECTS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "oldas", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "oldlinewrap", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "operator", RTK_INFO | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "otblrul", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_OUTL, "outl", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_OUTLINELEVEL, "outlinelevel", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "overlay", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PAGE, "page", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pagebb", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "panose", RTK_FONTTABLE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "paperh", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "paperw", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PAR, "par", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PARD, "pard", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PC, "pc", RTK_CHARSET | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PCA, "pca", RTK_CHARSET | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrb", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrfoot", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrhead", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrl", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdropt", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrr", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrsnap", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgbrdrt", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pghsxn", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnbidia", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnbidib", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnchosung", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgncnum", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgncont", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndbnum", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndbnumd", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndbnumk", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndbnumt", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndec", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgndecd", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnganada", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgngbnum", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgngbnumd", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgngbnumk", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgngbnuml", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhn", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhnsc", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhnsh", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhnsm", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhnsn", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnhnsp", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnlcltr", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnlcrm", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnrestart", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnstart", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnstarts", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnucltr", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnucrm", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnx", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgny", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnzodiac", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnzodiacd", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgnzodiacl", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pgwsxn", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "phcol", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "phmrg", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "phpg", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "picbmp", RTK_PICT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "picbpp", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "piccropb", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "piccropl", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "piccropr", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "piccropt", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pich", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PICHGOAL, "pichgoal", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "picprop", RTK_PICT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "picscaled", RTK_PICT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PICSCALEX, "picscalex", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PICSCALEY, "picscaley", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PICT, "pict", RTK_PICT | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "picw", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PICWGOAL, "picwgoal", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PLAIN, "plain", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pmmetafile", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PN, "pn", RTK_BULLETS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnacross", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnaiu", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnaiud", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnaiueo", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnaiueod", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnb", RTK_BULLETS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnbidia", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNBIDIB, "pnbidib", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pncaps", RTK_BULLETS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNCARD, "pncard", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pncf", RTK_BULLETS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnchosung", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pncnum", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pndbnum", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pndbnumd", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pndbnumk", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pndbnuml", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pndbnumt", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNDEC, "pndec", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNDECD, "pndecd", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnf", RTK_BULLETS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnfs", RTK_BULLETS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnganada", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNGBLIP, "pngblip", RTK_PICT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pngbnum", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pngbnumd", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pngbnumk", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pngbnuml", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNHANG, "pnhang", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNI, "pni", RTK_BULLETS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNINDENT, "pnindent", RTK_BULLETS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pniroha", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnirohad", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLCLTR, "pnlcltr", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLCRM, "pnlcrm", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLVL, "pnlvl", RTK_BULLETS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLVLBLT, "pnlvlblt", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLVLBODY, "pnlvlbody", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNLVLCONT, "pnlvlcont", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnnumonce", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNORD, "pnord", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNORDT, "pnordt", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnprev", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNQC, "pnqc", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNQL, "pnql", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNQR, "pnqr", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrauth", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrdate", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNRESTART, "pnrestart", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrnfc", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrnot", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrpnbr", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrrgb", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrstart", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrstop", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnrxst", RTK_PARATEXT | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnscaps", RTK_BULLETS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnseclvl", RTK_BULLETS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnsp", RTK_BULLETS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNSTART, "pnstart", RTK_BULLETS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnstrike", RTK_BULLETS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNTEXT, "pntext", RTK_BULLETS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNTXTA, "pntxta", RTK_BULLETS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNTXTB, "pntxtb", RTK_BULLETS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNUCLTR, "pnucltr", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_PNUCRM, "pnucrm", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnul", RTK_BULLETS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnuld", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnuldash", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnuldashd", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnuldashdd", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnuldb", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnulhair", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnulnone", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnulth", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnulw", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnulwave", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnzodiac", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnzodiacd", RTK_BULLETS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pnzodiacl", RTK_BULLETS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posnegx", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posnegy", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posx", RTK_POSOBJ | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posxc", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posxi", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posxl", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posxo", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posxr", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posy", RTK_POSOBJ | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyb", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyc", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyil", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyin", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyout", RTK_PARAPROPS | RTK_TEXT | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "posyt", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "prcolbl", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "printdata", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "printim", RTK_INFO | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "private", RTK_DOCPROPS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "propname", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "proptype", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "psover", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "psz", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pubauto", RTK_OBJPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pvmrg", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pvpara", RTK_POSOBJ | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pvpg", RTK_POSOBJ | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pwd", RTK_DESTINATION | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "pxe",  RTK_INDEX | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_QC, "qc", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_QD, "qd", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_QJ, "qj", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_QL, "ql", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_QMSPACE, "qmspace", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_QR, "qr", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RDBLQUOTE, "rdblquote", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_RED, "red", RTK_COLORTABLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "result", RTK_OBJECTS | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revauth", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revauthdel", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revbar", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revdttm", RTK_CHARPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revdttmdel", RTK_CHARPROPS | RTK_SHADING | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revised", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revisions", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revprop", RTK_DOCPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revprot", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revtbl", RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "revtim", RTK_INFO | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_RI, "ri", RTK_PARAPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RIN, "rin", RTK_PARAPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ROW, "row", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_RQUOTE, "rquote", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rsltbmp", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rslthtml", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rsltmerge", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rsltpict", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rsltrtf", RTK_OBJECTS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rslttxt", RTK_OBJECTS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTF, "rtf", RTK_FILEPROPS ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTLCH, "rtlch", RTK_CHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rtldoc", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rtlgutter", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTLMARK, "rtlmark", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTLPAR, "rtlpar", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTLROW, "rtlrow", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_RTLSECT, "rtlsect", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "rxe",  RTK_INDEX | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_S, "s", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SA, "sa", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "saauto", RTK_PARAPROPS | RTK_TOGGLE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sautoupd", RTK_STYLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SB, "sb", RTK_PARAPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbasedon", RTK_STYLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbauto", RTK_PARAPROPS | RTK_TOGGLE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbkcol", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbkeven", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbknone", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbkodd", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbkpage", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sbys", RTK_PARAPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SCAPS, "scaps", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "scompose", RTK_STYLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sec", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SECT, "sect", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectd", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectdefaultcl", RTK_SECTIONPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectexpand", RTK_SECTIONPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectlinegrid", RTK_SECTIONPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectnum", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectspecifycl", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectspecifygen", RTK_SECTIONPROPS | RTK_FLAG | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectspecifyl", RTK_SECTIONPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sectunlocked", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SHAD, "shad", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SHADING, "shading", RTK_PARAPROPS | RTK_SHADING | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shidden", RTK_STYLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shift", RTK_STYLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbottom", RTK_SHAPES | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbxcolumn", RTK_SHAPES | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbxignore", RTK_SHAPES | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbxmargin", RTK_SHAPES | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbxpage", RTK_SHAPES | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbyignore", RTK_SHAPES | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbymargin", RTK_SHAPES | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbypage", RTK_SHAPES | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpbypara", RTK_SHAPES | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpfblwtxt", RTK_SHAPES | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpfhdr", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpgrp", RTK_SHAPES | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SHPINST, "shpinst", RTK_SHAPES | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpleft", RTK_SHAPES | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shplid", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shplockanchor", RTK_SHAPES | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SHPPICT, "shppict", RTK_PICT | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpright", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SHPRSLT, "shprslt", RTK_SHAPES | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shptop", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shptxt", RTK_SHAPES | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpwrk", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpwr", RTK_SHAPES | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "shpz", RTK_SHAPES | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SL, "sl", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SLMULT, "slmult", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "snext", RTK_STYLE | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "softcol", RTK_SPECIAL | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "softlheight", RTK_SPECIAL | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "softline", RTK_SPECIAL | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "softpage", RTK_SPECIAL | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "spersonal", RTK_STYLE | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "splytwnine", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sprsbsp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sprslnsp", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sprsspbf", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sprstsm", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sprstsp", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "sreply", RTK_STYLE | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "staticval", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "stextflow", RTK_SECTION | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_STRIKE, "strike", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_STRIKED, "striked", RTK_CHARPROPS | RTK_SHADING | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "stylesheet", RTK_STYLE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_SUB, "sub", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "subdocument", RTK_PARAPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "subfontbysize", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "subject", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_SUPER, "super", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "swpbdr", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TAB, "tab", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tabsnoovrlp", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "taprtl", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tb", RTK_TABS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tc", RTK_TOC | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tcelld", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tcf", RTK_TOC | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tcl", RTK_TOC | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tcn", RTK_TOC | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tdfrmtxtbottom", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tdfrmtxtleft", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tdfrmtxtright", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tdfrmtxttop", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "template", RTK_DOCPROPS | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "time", RTK_FIELD | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "title", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "titlepg", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tldot", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tleq", RTK_TABS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tlhyph", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tlmdot", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tlth", RTK_TABS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tlul", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tphcol", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tphmrg", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tphpg", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposnegx", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposnegy", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposxc", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposxi", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposxl", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposx", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposxo", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposxr", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposy", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyb", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyc", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyil", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyin", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyoutv", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tposyt", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tpvmrg", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tpvpara", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tpvpg", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tqc", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tqdec", RTK_TABS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tqr", RTK_TABS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "transmf", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRAUTOFIT, "trautofit", RTK_TABLEDEF | RTK_TOGGLE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRB, "trbrdrb", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRH, "trbrdrh", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRL, "trbrdrl", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRR, "trbrdrr", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRT, "trbrdrt", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRBRDRV, "trbrdrv", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRFTSWIDTHA, "trftswidtha", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRFTSWIDTHB, "trftswidthb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRFTSWIDTH, "trftswidth", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRGAPH, "trgaph", RTK_TABLEDEF | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "trhdr", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "trkeep", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRLEFT, "trleft", RTK_TABLEDEF | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TROWD, "trowd", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDB, "trpaddb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDFB, "trpaddfb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDFL, "trpaddfl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDFR, "trpaddfr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDFT, "trpaddft", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDL, "trpaddl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDR, "trpaddr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRPADDT, "trpaddt", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRQC, "trqc", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRQL, "trql", RTK_TABLEDEF | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRQR, "trqr", RTK_TABLEDEF | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRRH, "trrh", RTK_TABLEDEF | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDB, "trspdb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDFB, "trspdfb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDFL, "trspdfl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDFR, "trspdfr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDFT, "trspdft", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDL, "trspdl", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDR, "trspdr", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRSPDT, "trspdt", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "truncatefontheight", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRWWIDTHA, "trwwidtha", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRWWIDTHB, "trwwidthb", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_TRWWIDTH, "trwwidth", RTK_TABLEDEF | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "twoonone", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "tx", RTK_TABS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "txe",  RTK_INDEX | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_UC, "uc", RTK_UNICODE | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_UD, "ud", RTK_UNICODE | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_UL, "ul", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULC, "ulc", RTK_CHARPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULD, "uld", RTK_CHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULDASH, "uldash", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULDASHD, "uldashd", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULDASHDD, "uldashdd", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULDB, "uldb", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULHAIR, "ulhair", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULHWAVE, "ulhwave", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULLDASH, "ulldash", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULNONE, "ulnone", RTK_CHARPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTH, "ulth", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTHD, "ulthd", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTHDASH, "ulthdash", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTHDASHD, "ulthdashd", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTHDASHDD, "ulthdashdd", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULTHLDASH, "ulthldash", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULULDBWAVE, "ululdbwave", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULW, "ulw", RTK_CHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_ULWAVE, "ulwave", RTK_CHARPROPS | RTK_TOGGLE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_U, "u", RTK_UNICODE | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_UP, "up", RTK_CHARPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_UPR, "upr", RTK_UNICODE | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "urtf", RTK_DESTINATION | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "useltbaln", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "userprops", RTK_INFO | RTK_DESTINATION ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_V, "v", RTK_CHARPROPS | RTK_TOGGLE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vern", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "version", RTK_INFO | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertalb", RTK_SECTIONPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertalc", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertalj", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertalt", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertdoc", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "vertsect", RTK_SECTIONPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "viewkind", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "viewscale", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "viewzk", RTK_DOCPROPS | RTK_VALUE | RTK_PARAM ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wbitmap", RTK_PICTPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wbmbitspixel", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wbmplanes", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wbmwidthbytes", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "webhidden", RTK_CHARPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "widctlpar", RTK_PARAPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "widowctrl", RTK_DOCPROPS | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "windowcaption", RTK_DOCPROPS | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_WMETAFILE, "wmetafile", RTK_PICTPROPS | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wpeqn", RTK_FIELD | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wpjst", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wpsp", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "wraptrsp", RTK_DOCPROPS | RTK_FLAG ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "xe",  RTK_INDEX | RTK_DESTINATION ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "xef",  RTK_INDEX | RTK_VALUE ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "yr", RTK_INFO | RTK_VALUE ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "yxe",  RTK_INDEX | RTK_FLAG ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "zwbo", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ZWJ, "zwj", RTK_SYMBOL ), 
            new RtfControlWordInfo(RtfControlWord.Ctrl_Unknown, "zwnbo", RTK_SYMBOL ),
            new RtfControlWordInfo(RtfControlWord.Ctrl_ZWNJ, "zwnj", RTK_SYMBOL)
        };
 
        #endregion Internal Const
    } 
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK