Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / Windows Forms
Article

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 245.5K   9.9K   214   86
RichText Builder - use in place of StringBuilder to output RTF.

Introduction

Manipulating Rich Text (RTF) - how to do it?

I expected it to be a relatively easy task. Surely, there was something out there that would allow RTF generation. I did not want to resort to HTML. I required tables, colour, font size, image insertion, and the ability to merge RTF documents preserving all the above formatting. I really needed something simple and fast. Say, as simple and easy as StringBuilder.

Rich Text is ubiquitous in Windows Forms applications, yet notoriously hard to manipulate programmatically. Display of Rich Text is based on the RTF specification (an archaic format dating way back to early Windows 3.0). Parsing Rich Text is beyond the scope of this article. If, however, you need to build up a simple rich text with font style, font, font size, font colour, back colour, tables, and insert images and merge RTF documents, then this little utility class (RTFBuilder) may help you.

Background

Programmatic manipulation of RTF within a RichTextBox was my first attempt, and I had it working to a point. The crunch came when trying to create tables. Anyone who has worked with the a RichTextBox and RTF tables will know what I mean.

After searching all over the net - Nada, apart from commercial controls - I was prepared to pay a couple of hundred dollars for such a utility, if it existed.

TextControl [a very good commercial control] allows display, editing, and programmatic generation of RTF, but was out of my price range and requirements. I also didn't like the size of the redistributable(s), and the difficulties of distributing the control with a small ClickOnce application, for example. The required learning curve for programmatic generation of RTF using the TextControl API was not insignificant.

RtfBuilder was the fruition of many hours of learning RTF specification and tinkering. RtfBuilder is based on the StringBuilder class design.

The beauty of RtfBuilder is in the fact that it can be used interchangeably in place of StringBuilder. It will output RTF when ToString() is Called.

You can rapidly develop your code initially with StringBuilder, and convert to the usage of Rich Text by replacing the initialization code with that of an RtfBuilder.

The RTF specification is reasonably large, and this utility uses just a small part of the specification to get the job done. Because of its (and my) limited knowledge of the RTF specification, there are limitations when merging RTF documents. Generally, RTF code from RichTextBox controls can be merged but Rich Text pasted from MS Word may cause problems when merging.

There are ways around prickly specifications when you just want to perform a subset of functions to get the job done.

Using the code

Create a new RTFBuilder, and simply append text in a similar fashion to StringBuilder usage.

Add formatting calls where necessary, prior to appending text. The format resets to default after each append, unless enclosed within a using FormatLock(sb.FormatLock()) {sb.Append....}. RtfBuilder also allows AppendFormat("{0}", arg); and AppendLineFormat("{0}",arg); (something that StringBuilder should have!)

C#
RTFBuilderbase sb = new RTFBuilder();
sb.AppendLine("AppendLine Basic Text");

sb.Append("append text1").Append("append text2").Append(
   "append text3").Append("append text4").AppendLine();

sb.FStyle(FontStyle.Bold).AppendLine("Bold");

sb.FStyle(FontStyle.Italic).AppendLine("Italic");

sb.FStyle(FontStyle.Strikeout).AppendLine("Strikeout");

sb.FStyle(FontStyle.Underline).AppendLine("Underline");

sb.FStyle(FontStyle.Bold | FontStyle.Italic | FontStyle.Strikeout | 
          FontStyle.Underline).AppendLine("Underline/Bold/Italic/Underline");

sb.ForeColor(KnownColor.Red).AppendLine("ForeColor Red");

sb.BackColor(KnownColor.Yellow).AppendLine("BackColor Yellow");
string rtf = sb.ToString();
this.richTextBox1.Rtf = rtf.

// Merging an RTF Document is sublimely simple
sb.AppendRTFDocument(this.richTextBox4.Rtf);

//Inserting an Image - again very simple
sb.InsertImage(image);

I have included a very simple application demonstrating the usage:

Image 1

Also included is a GDFBuilder class which can be used interchangeably with the RtfBuilder (base) in code, and will generate images that can be displayed in a paging image control (included).

I have used the GDFBuilder to create RTF popup tooltips and RTF labels by painting the images from the GDFPages exposed by the GDFPageManager. You will need to hunt around in the code to find this feature. I have not included a demo - if you are interested, post a comment.

Points of interest

It would be very easy to add an HtmlBuilder using the existing RtfBuilder framework.

There is extensive usage of IDisposable within the code that inserts RTF format commands. This allows RTF codes such as that for bold (/b) to be prepended before a string insert, and that for unbold (/b0) to be appended after the string insert.

Table creation is non-intuitive. You need to create the row and cell definitions and then enumerate over the cells. The EnumerateCells functions return an IEnumerable<RTFBuilderbase> which represents the underlying RTFBuilderbase, wrapped with a class that emits the correct RTF row and cell codes as you enumerate the cells.

C#
private void AddRow1(RTFBuilderbase sb, params string[] cellContents)
{

  Padding p = new Padding { All = 50 };//Padding is ignored
  //Create row definition
  RTFRowDefinition rd = new RTFRowDefinition(88, RTFAlignment.TopLeft, 
                        RTFBorderSide.Default, 15, SystemColors.WindowText, p);
  //Create Cell Definitions
  RTFCellDefinition[] cds = new RTFCellDefinition[cellContents.Length];
  for (int i = 0; i < cellContents.Length; i++)
  {
   cds[i] = new RTFCellDefinition(88 / cellContents.Length, RTFAlignment.TopLeft, 
            RTFBorderSide.Default, 15, Color.Blue, Padding.Empty);
  }

  int pos = 0;
  // Enumerate the cells
  // Each cell exposes an RtfBuilderbase so you can insert images,
  // format rtf i.e. all RtfBuilder functions , within the cell
  foreach (RTFBuilderbase item in sb.EnumerateCells(rd, cds))
  {
   item.ForeColor(KnownColor.Blue).FStyle(FontStyle.Bold | FontStyle.Underline);
   item.BackColor(Color.Yellow);
   item.Append(cellContents[pos++]);
  }
}

History

  • 12 Nov 2008 - Version 1
  • I have used this code extensively for the last few months in an application, and it seems stable, but the GDFBuilder still needs work. Also, padding and borders for table/row/cells is incomplete and nonfunctional.

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

 
QuestionAlignment Problems Pin
Fred J. Cimo Jr.7-Sep-20 7:58
Fred J. Cimo Jr.7-Sep-20 7:58 
QuestionProblem with StringAligment.Center Pin
Fred J. Cimo Jr.6-Sep-20 11:16
Fred J. Cimo Jr.6-Sep-20 11:16 
QuestionStructure &/or Documentation Pin
Fred J. Cimo Jr.4-Sep-20 8:36
Fred J. Cimo Jr.4-Sep-20 8:36 
BugFixed curly braces {} and backslash \ escape bug in CheckChar method Pin
j2associates27-Jul-20 5:55
j2associates27-Jul-20 5:55 
AnswerMessage Closed Pin
27-Jul-20 7:51
j2associates27-Jul-20 7:51 
QuestionAppendHeader/AppendFooter Pin
Pawan J14-May-20 0:39
Pawan J14-May-20 0:39 
Questionordered and unordered lists (bullets) Pin
relston4-Apr-20 4:25
relston4-Apr-20 4:25 
QuestionToString Pin
Kalkidas25-Mar-18 3:30
Kalkidas25-Mar-18 3:30 
AnswerRe: ToString - Create a new ToString method to accomplish this Pin
j2associates28-Jul-20 6:57
j2associates28-Jul-20 6:57 
BugHandling of the '{' and '}' chars Pin
Dan Randolph18-Aug-17 7:53
Dan Randolph18-Aug-17 7:53 
QuestionHow do we specify the cell width? Pin
Mr Yossu26-Jan-17 5:57
Mr Yossu26-Jan-17 5:57 
QuestionTab stop definitions Pin
3soft8-Jan-15 2:40
3soft8-Jan-15 2:40 
QuestionAdding fonts Pin
MTaunton7-Sep-14 0:59
MTaunton7-Sep-14 0:59 
AnswerRe: Adding fonts Pin
KL WRIGHT18-Dec-14 12:20
KL WRIGHT18-Dec-14 12:20 
QuestionRTF.RTFBuilderbase sb = new RTF.RTFBuilder(); Pin
Member 103662762-Jan-14 6:47
Member 103662762-Jan-14 6:47 
GeneralMy vote of 3 Pin
zhs_song7-Oct-13 23:29
zhs_song7-Oct-13 23:29 
QuestionHow to parse a cell in rich text box? Pin
M.Shahid.Sultan29-Sep-13 5:13
M.Shahid.Sultan29-Sep-13 5:13 
GeneralExcellent! Pin
experts13-Aug-13 7:53
experts13-Aug-13 7:53 
QuestionRotate Text Pin
garybronson30-Jun-13 1:51
garybronson30-Jun-13 1:51 
QuestionMixing Tables and Plaintext Pin
Tomm6un4-Jun-13 10:54
Tomm6un4-Jun-13 10:54 
AnswerRe: Mixing Tables and Plaintext Pin
Tomm6un5-Jun-13 3:43
Tomm6un5-Jun-13 3:43 
GeneralRe: Mixing Tables and Plaintext Pin
Tomm6un5-Jun-13 4:54
Tomm6un5-Jun-13 4:54 
QuestionAlignment? Pin
DrJBN21-May-13 4:52
DrJBN21-May-13 4:52 
AnswerRe: Alignment? Pin
DrJBN22-May-13 1:12
DrJBN22-May-13 1:12 
AnswerRe: Alignment? Pin
Tomm6un5-Jun-13 10:18
Tomm6un5-Jun-13 10:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.