Is there a way to add static text in app designer?
24 views (last 30 days)
Show older comments
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?
Accepted Answer
Cam Salzberger
on 6 Oct 2017
Edited: Cam Salzberger
on 6 Oct 2017
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
Austin Adam
on 16 Jan 2020
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...
More Answers (0)
See Also
Categories
Find more on Text Data Preparation 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!