Change properties of multiple components programmatically
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Moritz Wahlenmeier
am 23 Mär. 2022
Beantwortet: Fangjun Jiang
am 23 Mär. 2022
Hi,
is there a way to programmatically change the properties of a group of components similiar to using css selectors in HTML?
e.g. change the background color of all components with the type "uibutton" and "uilabel"
thanks in advance!
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 23 Mär. 2022
Yes. Simpliest example
a=uibutton;
b=uibutton;
set([a,b],'BackgroundColor','green')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!