Why does "msgbox" add extra space?

2 次查看(过去 30 天)
Dave
Dave 2013-9-19
评论: Ana 2014-3-24
I have a subroutine that reports avg and std values for up to 12 regions of interest in a single "msgbox" dialog. What I've noticed is that for multiple lines of text input to "msgbox", the figure adds extra space above the text area, which makes it look pretty ridiculous:
Any idea why the heck it does that?

回答(1 个)

Jan
Jan 2013-9-20
While it does not answer your question, I want to mention that a msgbox might be a bad choice to display this text. You can create a more appropriate dialog using a listbox with scrolling.
  5 个评论
Jan
Jan 2014-3-21
I avoid working with GUIDE. You can create the required code manually also:
FigH = figure('Menubar', 'none');
ListBoxH = uicontrol(FigH, 'Style', 'listbox', ...
'Units', 'Normalized', 'Position', [0,0,1,1], ...
'String', {'Yout text', 'E.g. split by TEXTWRAP()'})

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by