Info

This question is closed. Reopen it to edit or answer.

Can I see the code part that corresponds to various app elements?

1 view (last 30 days)
I am wondering if there is a way to find the specific code part that corresponds to various elements on an app user interface. For instance, let's assume we have an app with 4 image planes (using subplot(2,2,1:4)) some sliders that move in accordance to mouse wheel etc. How can I find the exact code parts of those elements? The code that corresponds to each one of the 4 planes and the code that corresponds to the slider that changes with mouse scroll.
  3 Comments
Adam
Adam on 16 May 2018
UI components are class properties. Just search for them in the code and find the callbacks. Things that you create using subplot will exist where you create them. It is entirely up to you where they spread to from there. I don't really understand the question.

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!