adjusting dialog box input font size

조회 수: 6 (최근 30일)
sermet
sermet 2016년 1월 5일
댓글: sermet 2016년 1월 5일
chars={'X0', 'Y0', 'Z0'};
start='coordinates?';
num_lines=1;
value={'0','0','0'};
coordinates=inputdlg(chars,start,num_lines,value);
How can I increase the font size (and make bold if it is available) of the user's input into this dialog box in Matlab 2015a?

채택된 답변

Walter Roberson
Walter Roberson 2016년 1월 5일
I do not know about R2014b and later. For versions before that, the font size is set according to the 'FactoryUicontrolFontSize' root property, which is dangerous to change (if it can be changed.)
The font weight (bold or not) is set according to the DefaultTextFontWeight for the text and DefaultUicontrolFontWeight for the input. Those are safer to set.
  댓글 수: 3
sermet
sermet 2016년 1월 5일
Walter when I run this;
set(groot,'factoryUicontrolFontSize',10)
I got;
Error using matlab.ui.Root/set
Factory properties can only be queried, not set.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by