フィルターのクリア

How can I rotate a UIlabel in appdesigner?

6 ビュー (過去 30 日間)
Andreas Papadakis
Andreas Papadakis 2018 年 8 月 9 日
回答済み: Hardik 2024 年 3 月 5 日
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 Center および File ExchangeMATLAB Report Generator についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by