how to show title msgbox complete
显示 更早的评论
I put a title to a msgbox but... iit doesn't show complete.
How Can I do for increment the msgbox size for show complete title?
Thanks!
回答(2 个)
Star Strider
2017-7-12
You can use the 'Position' property to lengthen the size of the message box:
h = msgbox('Test Long Title','This is a very, very, very long title');
posn = get(h, 'Position');
set(h, 'Position', posn+[0 0 150 0])
You have to experiment to get the result you want.
Jan
2017-7-12
0 个投票
Either use a shorter title. The title bar of the figure is not a good location for storing meaningful information.
Or increase the size of the window. This works with msgbox only if you display a larger text. But you can create a copy of the msgbox.m file and modify it such that the created figure has the wanted size. But how do you determine the wanted size? It is not easy to measure how much space is required in the title. Therefore the better solution is the first suggestion.
类别
在 帮助中心 和 File Exchange 中查找有关 App Building 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!