anyway to call checkbox in appdesigner programmatically?

21 vues (au cours des 30 derniers jours)
Yu Li
Yu Li le 12 Sep 2019
Commenté : Fabian Schnurre le 3 Déc 2023
Hi:
is there anyway to call checkbox in appdesigner programmatically?
Thanks!
Yu
  2 commentaires
Lewis Maina
Lewis Maina le 27 Mar 2020
yes , below is a section of my code which unticks ShowMultiplicationDivisionOptionsCheckBox.Value programmatically.
hope this helps you
function ShowAdvancedOptionsCheckBoxValueChanged(app, event)
value = app.ShowAdvancedOptionsCheckBox.Value;
switch value
case 0
case 1
app.ShowMultiplicationDivisionOptionsCheckBox.Value = false;
end
Fabian Schnurre
Fabian Schnurre le 3 Déc 2023
How does this work on a tree checkbox? there are no values for nodes

Connectez-vous pour commenter.

Réponse acceptée

Ajay Pattassery
Ajay Pattassery le 17 Sep 2019
I assume that you have already created a checkBox in app-designer, and you want to check or uncheck the checkBox programmatically.
You could set the value of CheckBox.Value to one for checking the box and toggling to zero to uncheck the box.
app.CheckBox.Value = 1;
(In the above example, CheckBox handle is stored in the structure app)
  2 commentaires
Yu Li
Yu Li le 17 Sep 2019
sorry, I did not describe my question clearly.
I do not mean change the value by click the checkbox. I want to use command to change the app.Checkbox.Value=1, and it will automatically run the function belong to it.
Thanks!
Yu
Adam
Adam le 17 Sep 2019
Have your checkbox callback call a new function, passing in the checkbox value and have your other code call that same function.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer 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!

Translated by