uidropdown : how know indices in item?

example: i select a ====> position =1
i select d=====> position =4
fig = uifigure;
%dd = uidropdown(fig,"Items",Period);
dd = uidropdown(fig,"Items",["a","b","c","d"]);

 Accepted Answer

dpb
dpb on 24 Jun 2023
The index to the selected item is in the <InteractionInformation object> of the dropdown component. The object is available to the ClickedFcn callback function; if it is present the user clicked on a selection. There's example code at the above link.

More Answers (0)

Categories

Find more on Develop Apps Programmatically in Help Center and File Exchange

Asked:

on 24 Jun 2023

Answered:

dpb
on 24 Jun 2023

Community Treasure Hunt

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

Start Hunting!