Programmatically select value in a list box

9 vues (au cours des 30 derniers jours)
Marcus
Marcus il y a environ 13 heures
Modifié(e) : Fangjun Jiang il y a environ 11 heures
I want to rearrange elements in a list box of a block mask in a
function moveDown(maskObj, controlName)
The rearrangement basically works as desired, however I am struggling with updating the selection after rearrangement.
When using
controlHandle = maskObj.getDialogControl(controlName);
selectedItems = controlHandle.getSelectedItems;
then rearranging the entries with
controlHandle.TypeOptions = rearrangedItems;
setting the same set of selected entries as before with
controlHandle.setSelectedItems = selectedItems;
fails with
% Error: Assignment not supported becuase the result of method
% 'setSelectedItems' is a temporary value
How can I update the selected items in the list box properly?
Thanks for your support.

Réponses (1)

Fangjun Jiang
Fangjun Jiang il y a 31 minutes
Modifié(e) : Fangjun Jiang il y a 31 minutes
should be
controlHandle.setSelectedItems(selectedItems)

Produits


Version

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by