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 set the font of the content present in the RichTextBox control. You can set this property in two different ways:
1. Design-Time: It is the easiest way to set the font of the content present in 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 font of the content present in the RichTextBox control programmatically with the help of given syntax:
public virtual System.Drawing.Font Font { get; set; }
Here, the Font is the type of font applied to the RichTextBox content. The following steps show how to set the Font property of the RichTextBox dynamically:
- Step 1: Create a RichTextBox using the RichTextBox() constructor is provided by the RichTextBox class.
// Creating RichTextBox using RichTextBox class constructor
RichTextBox rbox = new RichTextBox();
- Step 2: After creating RichTextBox, set the Font property of the RichTextBox provided by the RichTextBox class.
// Setting the font
rbox.Font = new Font("Castellar", 8);
- Step 3: And last add this RichTextBox control to the form using Add() method.
// Add this RichTextBox to the form
this.Controls.Add(rbox);
Example:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp30 {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e)
{
Label lb = new Label();
lb.Location = new Point(251, 70);
lb.Text = "Enter Text" ;
this .Controls.Add(lb);
RichTextBox rbox = new RichTextBox();
rbox.Location = new Point(236, 97);
rbox.ForeColor = Color.Red;
rbox.Font = new Font( "Castellar" , 8);
rbox.Text = "!..Welcome to GeeksforGeeks..!" ;
this .Controls.Add(rbox);
}
}
}
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Jul, 2019
Like Article
Save Article