anyway to call checkbox in appdesigner programmatically?
Mostrar comentarios más antiguos
Hi:
is there anyway to call checkbox in appdesigner programmatically?
Thanks!
Yu
2 comentarios
Lewis Maina
el 27 de Mzo. de 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
el 3 de Dic. de 2023
How does this work on a tree checkbox? there are no values for nodes
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!