anyway to call checkbox in appdesigner programmatically?
古いコメントを表示
Hi:
is there anyway to call checkbox in appdesigner programmatically?
Thanks!
Yu
2 件のコメント
Lewis Maina
2020 年 3 月 27 日
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
2023 年 12 月 3 日
How does this work on a tree checkbox? there are no values for nodes
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!