how to show title msgbox complete
2 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
回答(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.
0 个评论
Jan
2017-7-12
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Title 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!