Hi,
I want to change text size,font, etc. in richtextbox or textbox. How can i do that;
textbox1.Text = "example";
How can i change "example"'s font?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rekha SinghPosted Jan 5, 2010, 1:11 AM
richTextBox1.SelectionFont = new Font("Tahoma", 10, FontStyle.Italic);
richTextBox1.SelectionColor = System.Drawing.Color.Purple;
**************************************
pls mark Accepted if u find it helpful
Hiren SoniPosted Jan 4, 2010, 9:55 PM