anyway to call checkbox in appdesigner programmatically?
Afficher commentaires plus anciens
Hi:
is there anyway to call checkbox in appdesigner programmatically?
Thanks!
Yu
2 commentaires
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
le 3 Déc 2023
How does this work on a tree checkbox? there are no values for nodes
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Desktop dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!