HUGE font

SteveInBeloit

Well-known member
Joined
May 22, 2006
Messages
132
Programming Experience
10+
I need to have the font of a lable be huge. Like 1 1/2" or so tall. When you go to the size property, XX-Large is as big as it goes, and that is still way too small.
How do I go about getting bigger font?
Thanks
 
You can write "anything" into the Size field, for example "1,5in". This is culture dependent, if it doesn't work for you try "1.5in" (notice the decimal separator). Designer will only help you by providing the members of the FontSize enumeration.

To read more you could follow the documentation from Label class, Font property > FontInfo class, Size property > FontUnit structure, constructor. Checking out these constructors will give you an idea what you can write free-text in the Size field, and they can of course be set in code.
 
Back
Top