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!