How to extract a app designer component from an array and change its properties
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I currently have an issue where I have a 1x64 array of app designer components (lamps) and I want to be able to index the matrix then change the color of the lamp however Im unsure how to alter the lamp color after extracting it from the matrix.
example
D=[app.A1, app.B2, app.C3]
Desired_Lamp=D(1,Desired_Column)
0 Kommentare
Antworten (2)
Harsha Priya Daggubati
am 27 Mär. 2020
Hi,
I guess you can use Property Inspector to know the properites of any variable present in the workspace. If it has any properties you can refer using '.' . I think it should go well. If not, can you share these variables so that I can investigate the issue with more clarity.
2 Kommentare
Harsha Priya Daggubati
am 7 Apr. 2020
Hi,
I understood you want to change Color property of your Lamp component using Index.But, It is very difficult to guess to guess what Lamp component would be and its properties are. It would help if you can share your Lamp component.
Mehdi Ansarey
am 17 Feb. 2025
One strategy in these situations is indexing your components using Tag or Userdata.
e.g: you have some components i.e lamp and assign each a unique number in Tag.
then you can find desired lamp (that match your input guess) by its Tag
DesiredLamp= findall(app, Tag= ""+ i);
now process found Lamp
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!