RtfDomParser.RTFWriter.TestWriteFile C# (CSharp) Method

TestWriteFile() static private method

Test generate rtf file after execute this function you can open c:\a.rtf
static private TestWriteFile ( ) : void
return void
        internal static void TestWriteFile( )
        {
            RTFWriter w = new RTFWriter( "c:\\a.rtf" ) ;
            TestBuildRTF( w );
            w.Close();
            System.Windows.Forms.MessageBox.Show("OK , you can open file c:\\a.rtf ��.");
        }