Changing enable field in GUI property inspector
조회 수: 2 (최근 30일)
이전 댓글 표시
How to i change the enable field in the property ispector?
I have a radio button that when pressed, i want it to disable a text box.
this is what i have
set(handles.ions_dir, 'Enable', false)
where ions_dir is the text box i am trying to disable
but it doesnt seem to work. anyone know whats the correct command? thanks
댓글 수: 0
채택된 답변
Oleg Komarov
2012년 3월 26일
set(handles.ions_dir, 'Enable', 'off')
댓글 수: 8
Oleg Komarov
2012년 3월 26일
With that much info you gave us it would be impossible to guess what calls what.
I suggest to place a break point in the callback to see if it's called.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Background Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!