How to programmatically change the label text of a matlab.ui.control.Knob (or other ui.conntrol)
53 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Allen Goldstein
le 22 Fév 2021
Commenté : Allen Goldstein
le 22 Fév 2021
I have a set of knobs that need to have the label changed depending on what they are controlling. But it seems the label text creates the controls name itself. For example if the knob is labeled "M" then the name is app.MKnob. I want the user to sometimes see the knob called "B" and at other times see it called "M".
There does not seem to be any property to change the label text and I cannot use tlabel = uilabel(app.MKnob) because the uicontrol cannot be a parent.
Seems like there should be s simple way to programmatically change the label that the user sees for a uicontrol.
0 commentaires
Réponse acceptée
Mario Malic
le 22 Fév 2021
Hi,
Knob component actually consists of two components. If you right click on Component browser, there's an option to include component labels.
app.Knob % the component
app.KnobLabel.Text % returns the text associated with the knob
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!