필터 지우기
필터 지우기

Factory properties can only be queried, not set, error

조회 수: 4 (최근 30일)
sermet
sermet 2016년 1월 5일
댓글: Jacqueline 2018년 11월 19일
for example I want to change factoryUicontrolFontSize with this command;
set(groot,'factoryUicontrolFontSize',10)
When I execute above command, I got;
Error using set Factory properties can only be queried, not set.
  댓글 수: 1
Stephen23
Stephen23 2016년 1월 5일
The whole point of factory settings is that they cannot be changed: this allows a system to be rest to its initial (working) state. If any user could simply play around and change the factory settings, then a true reset would never be possible.
Try adjusting the default values instead of the factory values.

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

채택된 답변

Steven Lord
Steven Lord 2016년 1월 5일
You can't change the factory settings -- they are set at the "factory" (here at MathWorks.)
You can set the DEFAULT settings instead -- change the 'factory' part of your command to 'default' instead. Note that this will only change future uicontrols; it will have no effect on uicontrols that already exist, even if you didn't give them a different FontSize (and so they were using the default from when they were created.)
  댓글 수: 2
Silvio Eberhardt
Silvio Eberhardt 2018년 9월 8일
But msgbox() and other UI objects don't read the default values of properties, they read the factory value. On my computer, that results in very small print. And when the font size is modified (along with the box extent) after msgbox is called, on slower systems you then see the box changing - a rather ugly effect.
Jacqueline
Jacqueline 2018년 11월 19일
I have the same problem. I end up just overwriting inputdlg, questdlg, etc but it would be nice if there was a way to just increase the FactoryUicontrolFontSize.

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

추가 답변 (0개)

카테고리

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