Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / Windows Forms

RichText Builder (StringBuilder for RTF)

Rate me:
Please Sign up or sign in to vote.
4.86/5 (102 votes)
12 Nov 2008CPOL4 min read 246.8K   9.9K   214  
RichText Builder - use in place of StringBuilder to output RTF.


namespace CurrentPatient
{
    using RTF;

    // ----------------------------------------------------------------------------------------
    //    _                ___        _..-._   Date: 12/11/08    23:33
    //    \`.|\..----...-'`   `-._.-'' _.-..'     
    //    /  ' `         ,       __.-'' 
    //    )/` _/     \   `-_,   /     Solution: RTFLib
    //    `-'" `"\_  ,_.-;_.-\_ ',    Project : RTFLib                                 
    //        _.-'_./   {_.'   ; /    Author  : Anton
    //       {_.-``-'         {_/     Assembly: 1.0.0.0
    //                                Copyright � 2005-2008, Rogue Trader/MWM
    //        Project Item Name:      IRtfProcessor.cs - Code
    //        Purpose:                Processor of RTF
    // ----------------------------------------------------------------------------------------
    /// <summary>
    /// Processor of RTF
    /// </summary>
    public interface IRtfProcessor
    {
        #region Public Properties

        RTFBuilderbase Builder { get; }

        #endregion

        #region Abstract Methods

        string Process(string rtf);

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Australia Australia
Interested in financial math and programming theory in general. Working on medical applications in spare time. Happy to get feedback.

Comments and Discussions