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

2 次查看(过去 30 天)
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

采纳的回答

Walter Roberson
Walter Roberson 2013-5-8
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 个评论
John
John 2013-5-14
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by