필터 지우기
필터 지우기

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 CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by