[GUI] How do you get only one element in a listbox

2 ビュー (過去 30 日間)
Shane
Shane 2012 年 12 月 17 日
I know you are able to obtain all the elements in a string from the listbox with:
get(handles.listbox1, 'String')
But what if I only want the second or fourth element in the listbox?
Thanks in advance <3

採用された回答

Image Analyst
Image Analyst 2012 年 12 月 17 日
You have to read in the whole thing anyway. Then get the value property and use that to index into the string.
listboxItems = get(handles.listbox1, 'string');
selectedItems = get(handles.listbox1, 'value');
selectedItem = listboxItems(selectedItems);
  4 件のコメント
Walter Roberson
Walter Roberson 2012 年 12 月 17 日
Change
listboxItems = get(handles.listbox1, 'string');
to
listboxItems = cellstr( get(handles.listbox1, 'string') );
Shane
Shane 2012 年 12 月 17 日
Thank you soo much Walter I appreciate it!!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by