anyway to call checkbox in appdesigner programmatically?
Show older comments
Hi:
is there anyway to call checkbox in appdesigner programmatically?
Thanks!
Yu
2 Comments
Lewis Maina
on 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
on 3 Dec 2023
How does this work on a tree checkbox? there are no values for nodes
Accepted Answer
More Answers (0)
Categories
Find more on Desktop in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!