c# set FontSize of TextBox

Jordan Trainor picture Jordan Trainor · Nov 23, 2012 · Viewed 76.7k times · Source

How would I set the font size of a TextBox in c#. I can get the current size but it does not allow to set it.

public static Form client;
((TextBox)client.Controls[0]).Font.size = 16;

Answer

Jon B picture Jon B · Nov 23, 2012

You have to set the Font property. Size is a readonly property of Font.

var textBox = (TextBox)client.Controls[0];
textBox.Font = new Font(textBox.Font.FontFamily, 16);