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