Clear Filters
Clear Filters

uidropdown : how know indices in item?

12 views (last 30 days)
Luca Re
Luca Re on 24 Jun 2023
Answered: dpb on 24 Jun 2023
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 Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!