Changing enable field in GUI property inspector
1 回表示 (過去 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!