-1

how would I change the font size of the "_" in the Word.Insert?

string Word = "yellow";
 Word.Insert(2, " _ ");
Wizhurd
  • 13
  • 5

1 Answers1

1

Assuming it is in a Label (from comments):

yourformName.YourLabel.Content = Word;
yourformName.YourLabel.Font = new Font("Arial", fontSize ,FontStyle.Bold);

See Easiest way to change font and font size with visual C#

Community
  • 1
  • 1
Liam McInroy
  • 4,339
  • 5
  • 32
  • 53