How to make a Text Area auto-scroll to bottom (created in app designer)
63 ビュー (過去 30 日間)
古いコメントを表示
Frank van Diggelen
2017 年 8 月 3 日
編集済み: Frank van Diggelen
2022 年 6 月 17 日
I created a Text Area in app designer. It is populated with status messages as the app runs. After a while the area fills with lines of text, and the vertical scroll bar appears, but new messages are written in the invisible part of the area. The user has to scroll down "by hand". How can I make the Text Area autoscroll, so that each new message is visible?
1 件のコメント
Eric Sargent
2020 年 12 月 9 日
As of R2020b uitextarea now supports scroll.
In this case you could use:
scroll(textArea, 'bottom')
採用された回答
Eric Sargent
2020 年 12 月 9 日
As of R2020b uitextarea now supports scroll.
In this case you could use:
scroll(textArea, 'bottom')
その他の回答 (1 件)
Chris Portal
2017 年 8 月 5 日
If it's possible to use a listbox instead of a text area, you would be able to use the scroll function to programmatically scroll specific items into view:
https://www.mathworks.com/help/matlab/ref/scroll.html
1 件のコメント
Marko Antila
2019 年 2 月 14 日
編集済み: Marko Antila
2019 年 2 月 14 日
Scroll function does not work properly with App Designer List Box, unfortunately:
- in startFcn it hides the List Box (permanently)
- in callbacks it does exactly nothing
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!