Open In App

How to set the Foreground Color of the RichTextBox in C#?

In C#, RichTextBox control is a textbox which gives you rich text editing controls and advanced formatting features also includes a loading rich text format (RTF) files. Or in other words, RichTextBox controls allows you to display or edit flow content, including paragraphs, images, tables, etc. In RichTextBox, you are allowed to change the foreground color of the RichTextBox control using ForeColor Property which makes your RichTextBox control more attractive. You can set this property in two different ways:

1. Design-Time: It is the easiest way to set the foreground color of the RichTextBox as shown in the following steps:



2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the foreground color of the RichTextBox control programmatically with the help of given syntax:

public override System.Drawing.Color ForeColor { get; set; }

Here, Color indicates the foreground color of the RichTextBox. The following steps show how to set the ForeColor property of the RichTextBox dynamically:




Article Tags :
C#