How to change text style in static text box in matlab GUI?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I made a matlab GUI in GUIDE and I have a static text box that is updated. I use the code below to add text underneath the text that is in the static text box by default (See attached screenshot for look at the GUI). My question is how do I change the look of the text I am adding with the code below without changing the look of the text already in the static text box at the beginning of the plotting command? More simply, I want to add more words in the static text box but have the text be normal (no bold font) and smaller than the "UAV Mission Plan Updates" text that is in the GUI by default.
addText = sprintf('- UAV executing mission plan');
origtxt = get(handles.text2,'String');
set(handles.text2, 'String', {origtxt, addText}, 'FontWeight', 'normal'); % FontWeight command changes all of the text, not just the addText portion
6 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!