Using helper function for multiple callbacks in appdesigner

4 vues (au cours des 30 derniers jours)
Karthik  Vemireddy
Karthik Vemireddy le 29 Mai 2018
Hi,
I would like to update the limits of a numeric field (Max Value), when the value of another numeric field (min Value) changes.
I have multiple min & max value numeric filed sets. I want to create a helper function that would do the above job, when I pass on the component and event information.
Is it possible? If yes, can someone help me out with it? I'm using matlab 2016b
Thanks and Best Regards
Karthik

Réponse acceptée

Karthik  Vemireddy
Karthik Vemireddy le 5 Juin 2018
Modifié(e) : Karthik Vemireddy le 5 Juin 2018
I have figured it out and its quite simple. All you need to do is, pass the component as input argument.
function HelperFcn(app, Component)
Selvalue= Component.Value;
end
In the function, you can access the elements of the component through the passed variable.
use
SelVal=Component.value;
instead of
SelVal=app.listbox.value;
HTH!

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by