Write bold text in a textbox - guide
显示 更早的评论
How to write a bold text in a textbox in guide, from the code? Is this possible?
采纳的回答
更多回答(2 个)
Alan Meier
2020-7-14
For me the easiest solution I found is also described in the TextBox Properties documentation page from Matlab. I just added
'FontWeight','bold'
to my annotation box. Although this is not specifically mentioned in the annotation documentation it works fine. So I ended up with the following line:
dim = [.825 .2 .8 .65];
annotation('textbox',dim,'String','boldString','FitBoxToText','on','FontSize',14,'FontWeight','bold','linestyle','none');
1 个评论
Image Analyst
2020-7-14
There are a lot of things you can change. They're not all explicitly spelled out in the annotation documentation but it is mentioned like this:
Each type of annotation object supports a different set of properties. For a full list of properties and descriptions for each type, see the associated property page.
- Line Properties
- Arrow Properties
- DoubleEndArrow Properties
- TextArrow Properties
- TextBox Properties
- Rectangle Properties
- Ellipse Properties
So it's not mentioned explicitly -- it's there, but there's an additional click you have to do.
类别
在 帮助中心 和 File Exchange 中查找有关 Report Generator Creation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!