11-15-2024 01:35 PM
Hi, I am able to change the font size using a String control by Create > Property Node > Text > Font > Size
But I need to use a Textbox container. How can I change the font size in a Textbox container? I am using LabVIEW 2015.
I can reach Create > Property for System.Winfows.Forms.TextBox Class > Text With this I can programmately change the text but not the size.
Regards,
Hans
Solved! Go to Solution.
11-15-2024 04:45 PM
You need to read the current font, create a new one with similar values except the size, and replace it with that:
Example VI attached
11-15-2024 06:19 PM
Thank you Kyle, that was exactly what I needed !