How to use multible lines in Edit Field with App Designer
49 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I'm building a GUI with App Designer (MATLAB R2020b) and want to use a Edit Field (Text) with multiple lines (input and output).
When I fill the value of the edit field with a string with \n in it nothing happens.
For example:
text = [test1 \t test2 \n test3 \t test4];
string=sprintf(text)
app.EditField.value=string;
In the edit field is now displayed: test1 test2test3 test4.
I found solutions for this problem but only for GUIDE with uicontrol but this function only works with apps created using the figure function or with GUIDE.
Text Area is not an option because I want to use the same field for input and output.
Thanks for your help!
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!