How can I rotate a UIlabel in appdesigner?

15 visualizaciones (últimos 30 días)
Andreas Papadakis
Andreas Papadakis el 9 de Ag. de 2018
Respondida: Hardik el 5 de Mzo. de 2024
How can I rotate a UIlabel in appdesigner? So instead of me reading it horizontally, it is displayed vertically>

Respuestas (1)

Hardik
Hardik el 5 de Mzo. de 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';

Categorías

Más información sobre Application Deployment en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by