How to get the list data from a listbox within a saved and recalled .fig file?

1 view (last 30 days)
I have tried to used get(h,'children') etc. to access the info stored in the .fig file. It seem to be there as the list is about 300 items and can be scrolled to and clicked on from the recalled figure file. The goal is to be able to provide a dynamic .fig file for a secondary user to open and manipulate. Thanks, John

Accepted Answer

Walter Roberson
Walter Roberson on 8 May 2013
listbox_handles = findobj(h, '-type', 'uicontrol', '-style', 'listbox');
There might be more than one, of course. If you know the tag you are looking for, then
listbox_handle = findobj(h, '-tag', 'TheTagHere');
  1 Comment
John
John on 14 May 2013
Thanks, I'm new to this forum setup. Your code worked perfectly. I thought that I could use a similar method to obtain the rowlabels from a clustergram that was plotted and saved as a figure ( .fig) file. and then put that into a listbox so that a user would need only the fig file to dynamically focus into the gene area of interest of a clustergram. As a second question I have posted a question concerning how to obtain the label list from such a clustergram embedded in a plot .fig file. It's likely as simple as your listbox answer but I'm having trouble extracting the gene labels. Thanks again Walter, John Rodgers

Sign in to comment.

More Answers (0)

Categories

Find more on App Building in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!