Is there a way to add static text in app designer?
조회 수: 23 (최근 30일)
이전 댓글 표시
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?
채택된 답변
Cam Salzberger
2017년 10월 6일
편집: Cam Salzberger
2017년 10월 6일
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
Austin Adam
2020년 1월 16일
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...
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Data Preparation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!