How can I rotate a UIlabel in appdesigner?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I rotate a UIlabel in appdesigner? So instead of me reading it horizontally, it is displayed vertically>
0 commentaires
Réponses (1)
Hardik
le 5 Mar 2024
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';
0 commentaires
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!