Is there a way to add static text in app designer?
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Matt J
el 5 de Oct. de 2017
Comentada: Austin Adam
el 16 de En. de 2020
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 comentarios
Respuesta aceptada
Cam Salzberger
el 6 de Oct. de 2017
Editada: Cam Salzberger
el 6 de Oct. de 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 comentarios
Austin Adam
el 16 de En. de 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...
Más respuestas (0)
Ver también
Categorías
Más información sobre Text Data Preparation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!