Info

This question is closed. Reopen it to edit or answer.

In Appdesigner , how to know the attributes of certain UI

1 view (last 30 days)
For instance , For a discerte knob , how to refer to its current selected items ?
is it
discreteKnob.Value ?
or
discreteKnob.SelectedItems.Text
or
discreteKnob.States
how for brand new ui figure to know its associated attributes?

Answers (1)

Vishal Chaudhary
Vishal Chaudhary on 10 Jan 2019
To get all the current attributes of UI, "get" can be used.
For example:
ax = uiaxes;
get(ax)
ax.XLim=[0 10];
This will show all the current attributes and then they can be accessed and updated as in the last line.

Community Treasure Hunt

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

Start Hunting!