How to extract a app designer component from an array and change its properties
6 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
Harsha Priya Daggubati
2020 年 3 月 27 日
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 件のコメント
Harsha Priya Daggubati
2020 年 4 月 7 日
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
2025 年 2 月 17 日 16:03
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!