Is there a way to add static text in app designer?

I have a lot of experience with GUIDE, but am now trying appdesigner for the first time. Is there anything comparable to GUIDE's static text objects that can be placed for additional labelling on the app designer canvas?

2 Comments

uilabel should do that but someone has had some trouble with it lately.
Thanks, but then as far as you know, there is no way to do it from within the App Designer?

Sign in to comment.

 Accepted Answer

Hello Matt,
Rik is correct that uilabel is the way to go. You can create the label manually during app creation:
Or you can create it programmatically in one of the callbacks. For example, I added a "startupFcn" callback, and put this code in:
uilabel(app.UIFigure, ...
'Text', 'my programmatically created label', ...
'Position', [100 100 250 30])
I am not sure Andre (on the other question) was experiencing issues, as it seemed to work fine for me. If you run into any issues, can you provide details about behavior and error message?
-Cam

2 Comments

Hmmm. So it was staring me right in the face. Thanks, Cam!
Hi i Know this is a bit late, but I was wondering with your programatically added in Label, can you change the text of it while the script is running? I am trying to show multiple updating lines of code in my app (sort of like the command window where lines come one after another but don't disappear). Is this possible with the Label? Or is there a better way to do it? The ony text related components I see are for user input...

Sign in to comment.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!