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)
Show older comments
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?
0 Comments
Answers (1)
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.
Documentation link for "get" :https://www.mathworks.com/help/matlab/ref/get.html?searchHighlight=get&s_tid=doc_srchtitle
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!