How can I display multiline text in a push button by setting its 'String' property ?
11 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2009 年 6 月 27 日
回答済み: Rob Campbell
2019 年 11 月 20 日
Typing a very long string in the push button uicontrol object's 'String' property causes the displayed text to be truncated if the pushbutton object is not long enough to accommodate the entire string.
How can I wrap the text to prevent it from getting truncated ? Is it possible to display multiline strings in the push button?
採用された回答
MathWorks Support Team
2009 年 6 月 27 日
As of MATLAB 7.1 (R14SP3), push buttons do not support multiline text. This is in line with Windows UI design standards.
The workaround to the problem is to modify the size of the push button in the GUI design to accommodate the longest string that it will hold at any time.
Alternatively, you can use a static-text object to display the information, since static-text objects can be multiline.
1 件のコメント
その他の回答 (1 件)
Rob Campbell
2019 年 11 月 20 日
You can have multi-line text in a button as follows:
h_button.String='<html>line one<br />line 2 &pi</html>';
This is tested in R2019b. I don't know when this option became available.
0 件のコメント
参考
カテゴリ
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!