65.9K
CodeProject is changing. Read more.
Home

Multiple Colored Texts in RichTextBox using C#

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.93/5 (22 votes)

Jun 27, 2009

CPOL

2 min read

viewsIcon

193457

downloadIcon

6732

Multiple Colored texts in RichTextBox using C#

multiplecolor1.JPG

multiplecolor2.JPG

Introduction

This article is created for making multiple colored texts in a textbox. By using the SelectionText property in richtextbox we have created a sample application for multiple colored texts in Microsoft’s richtextbox control. Let us see how to make it.

Prerequisites

  1. .NET Framework 2.0
  2. Visual Studio 2005

Description

Actually one of my colleagues asked me how to enter values in a richtextbox with multiple color texts.

I just tried to find any other way to have multiple colors in a textbox, unfortunately did not find one. Then I tried in Google and found that we have an option to do it in richtextbox. There is a property to set colored text by using SelectionText.

Richtextbox has the properties of SelectionFont, SelectionColor and SelectedText. Setting the values for these properties makes multiple colors in our richtextbox.

I just tried to create it as a sample application and it is done. It has a very simple logic to it. I have given the code snippet with this article. You can download the attached sample application and try to see the magic by clicking the buttons. There are two buttons available to test. One is for red colored text and the other is for green colored text. You can change the colors as per your wish by changing the codebehind.

Using the Code

The following code snippet explains to us how to do the multiple colored texts in textbox. Let us see:

Font font = new Font("Tahoma", 8, FontStyle.Regular);
richTextBox1.SelectionFont = font;
richTextBox1.SelectionColor = Color.Red;
richTextBox1.SelectedText = Environment.NewLine + textBox1.Text;		

Using the above code, I have created a sample application and attached it with this article (please see download link at the top of this article).

Conclusion

Hence we have made multiple colored texts in our richtextbox. This is basically used for making some chat application. We will have to show the text of the person at the other end in a different color in the chat application, so that we can use this method. We can create a simple method and call in every time we need to show the text in richtextbox with parameters like “textbox1.text, color, etc.”

History

  • 27th June, 2009: Initial post