フィルターのクリア

Is it possible to disable the items of listbox using m-scripting?

5 ビュー (過去 30 日間)
Afifa Shaikh
Afifa Shaikh 2020 年 10 月 23 日
回答済み: Image Analyst 2020 年 10 月 23 日
I want to disable the items of listbox after a particular string is found in the listbox item.
Is there any way to disable the items?

回答 (1 件)

Image Analyst
Image Analyst 2020 年 10 月 23 日
Yes, in the listbox click event, just immediately disable (deselect) any item that you don't want clicked on by removing it from the list of items they clicked on and sending the new selection(s) back to the listbox control. For example, in GUIDE:
% Retrieve what items were selected by the user.
selectedItems = handles.lstListbox.Value;
% See if item #3 was selected.
protectedIndex = selectedItems == 3;
% If 3 was selected, disable/deselect it.
if any(protectedIndex)
% Remove from the selection array variable.
selectedItems(protectedIndex) = []
% Update listbox with new selection.
handles.lstListbox.Value = selectedItems;
end

カテゴリ

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