How can I set the default Font for app designer?
3 ビュー (過去 30 日間)
古いコメントを表示
We have a company font that I would like to use, it's already in the system. What's the best way to mark all components in app designer with this font? Or use when I add new components?
1 件のコメント
Frank
2023 年 6 月 22 日
Josh, I have a very similar question which has not yet received any answers or comments. It is at
In my case, I want to install a new custom font and use it in apps. It is either a quirky problem or I am misunderstanding something. So far I have not got an answer...
回答 (1 件)
Parth Saraf
2023 年 6 月 22 日
Hi Josh,
You can try using this lines of code:
defaultFontName = 'Helvetica';
defaultFontSize = 12;
root = matlab.ui.RootProperties;
root.DefaultUicontrolFontName = defaultFontName;
root.DefaultUicontrolFontSize = defaultFontSize;
matlab.ui.RootProperties = root;
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!