how to show title msgbox complete

4 次查看(过去 30 天)
alfred
alfred 2017-7-12
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
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
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.

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by