How can I rotate a UIlabel in appdesigner?

11 次查看(过去 30 天)
How can I rotate a UIlabel in appdesigner? So instead of me reading it horizontally, it is displayed vertically>

回答(1 个)

Hardik
Hardik 2024-3-5
there is no any rotation property for UILabel but you can do this
lbl=uilabel(app.GridLayout4);
lbl.Layout.Row=9;
lbl.Layout.Column=2;
text="Vertical comment";
newstring=split(text,'');
lbl.Text=newstring;
lbl.HorizontalAlignment='center';

类别

Help CenterFile Exchange 中查找有关 Application Deployment 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by