Top "Richtextbox" questions

The RichTextBox control allows to display or edit RTF (Rich Text Format) content, which may include formatted paragraphs, hyperlinks, and inline images.

Modifying default tab size in RichTextBox

Is there any way to change the default tab size in a .NET RichTextBox? It currently seems to be set …

.net winforms tabs richtextbox
change the color of a line or a word in a richtextbox?

I can change the color of ONE line and/or ONE word perserving the other colors in the richtextbox? For …

vb.net colors richtextbox richtext
Append text to the beginning in the Rich Text Box

private void button1_Click(object sender, EventArgs e) { richTextBox1.AppendText("\r\n"); richTextBox1.Focus(); string s = "Enter "; richTextBox1.AppendText(s + "\…

c# richtextbox
C#: Synchronize Scroll Position of two RichTextBoxes?

In my application's form, I have two RichTextBox objects. They will both always have the same number of lines of …

c# .net winforms scroll richtextbox
Reset RTF in RichTextBox?

I'm trying to "reset" the formatting in my RichTextBox (WinForms, not WPF). I was previously using richTextBox.Text = richTextBox.Text; …

c# winforms richtextbox rtf richtext
How to add Save file Dialog Box using C#

I need to implement something similar to Notepads' save option. Assuming I have a button placed next to a RichTextBox, …

c# wpf richtextbox savefiledialog notepad
Difference between Textbox and RichTextbox wpf?

Textbox and RichTextbox are look like same.But don't know the difference.Please tell me anyone, When i have to …

wpf textbox richtextbox
RichTextBox color selected lines

I am new to windows Forms. I am using VS 2008, C# to write a RichTextBox. I want to be able …

c# .net winforms richtextbox
Detecting if paste event occurred inside a rich text box

Is there a way by which we can find out if a clip board paste event occurred in a rich …

c# .net winforms richtextbox
Get current scroll position from rich text box control?

I have searched the internet far and wide and seen many questions like this, but I have not seen an …

c# winforms .net-4.0 scrollbar richtextbox