Effacer les filtres
Effacer les filtres

Text orientation right to left

8 vues (au cours des 30 derniers jours)
Daniel Liberman
Daniel Liberman le 9 Juin 2020
Hi, In my GUI,I have several popupmenus and checkboxes in which I want the text to be oriented from right to left. Can anyone tell how to do this?

Réponses (1)

Johannes Hougaard
Johannes Hougaard le 9 Juin 2020
Modifié(e) : Johannes Hougaard le 9 Juin 2020
I'm not fully sure if this adresses your problem - but this does something along the lines of orienting the text right to left.
uifig = uifigure;
label = uilabel(uifig);
label.Text = "right to left";
label.Text = fliplr(label.Text);
label.Position = [100 100 100 22];
label.HorizontalAlignment = 'Right';
If you need to rotate your text rather than flipping it you may use a text rather than a uilabel
uifig = uifigure;
uiaxis = uiaxes(uifig,'visible','off');
label = text(uiaxis,1,0,'Left to right');
label.Rotation = 180;

Catégories

En savoir plus sur Develop Apps Using App Designer 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!

Translated by