Пример #1
0
        }         // Interpret

        // ----------------------------------------------------------------------
        public static void Interpret(IRtfSource rtfTextSource, IRtfInterpreterSettings settings,
                                     params IRtfInterpreterListener[] listeners)
        {
            Interpret(RtfParserTool.Parse(rtfTextSource), settings, listeners);
        }         // Interpret
Пример #2
0
        }         // BuildDoc

        // ----------------------------------------------------------------------
        public static IRtfDocument BuildDoc(IRtfSource rtfTextSource, IRtfInterpreterSettings settings,
                                            params IRtfInterpreterListener[] listeners)
        {
            return(BuildDoc(RtfParserTool.Parse(rtfTextSource), settings, listeners));
        }         // BuildDoc
Пример #3
0
        }         // Interpret

        // ----------------------------------------------------------------------
        public static void Interpret(string rtfText, IRtfInterpreterSettings settings,
                                     params IRtfInterpreterListener[] listeners)
        {
            Interpret(RtfParserTool.Parse(rtfText), settings, listeners);
        }         // Interpret