How to show variables in the workspace of an custom UI component ( App Designer) while debugging?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Walter
el 23 de Abr. de 2025
I am building a big app with several custum UI components. I noticed that I can see the app workspace with all variables while debugging in the main app designer app. But when I try this while debugging of an custum UI component the property inspector starts and I cannot see all die variables in the object "comp". Is there any option to deactivate the property inspector?
0 comentarios
Respuesta aceptada
Adam Danz
el 23 de Abr. de 2025
Editada: Adam Danz
el 23 de Abr. de 2025
I'm having trouble envisioning what you're describing. The property inspector can be closed using the following command.
inspect -close
To explore what you're descibing, I created a custom UI component using ComponentContainer and made it available in appdesigner using appdesigner.customcomponent.configureMetadata. After dragging the component into the app in Design View, I assigned a ValueChanged callback function to it and placed a break point within that callback function. After running the app, I interacted with the component to trigger the callback and was able to see component property values from within MATLAB desktop.
Update
I figured out what you are seeing. I believe you are accessing the object by double clicking on the object from the Workspace browser. This indeed opens the Property Inspector. Use openvar to open the variable in variable editor. If the object's name is "comp", openvar('comp').
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Create Custom UI Components en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!